mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	
		
			
	
	
		
			61 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			61 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|  | POST {{triliumHost}}/etapi/create-note | ||
|  | Content-Type: application/json | ||
|  | 
 | ||
|  | { | ||
|  |   "parentNoteId": "root", | ||
|  |   "type": "text", | ||
|  |   "title": "Hello", | ||
|  |   "content": "" | ||
|  | } | ||
|  | 
 | ||
|  | > {% client.global.set("createdBranchId", response.body.branch.branchId); %} | ||
|  | 
 | ||
|  | ### | ||
|  | 
 | ||
|  | PATCH {{triliumHost}}/etapi/branches/{{createdBranchId}} | ||
|  | Content-Type: application/json | ||
|  | 
 | ||
|  | { | ||
|  |   "prefix": "pref", | ||
|  |   "notePosition": 666, | ||
|  |   "isExpanded": true | ||
|  | } | ||
|  | 
 | ||
|  | ### | ||
|  | 
 | ||
|  | GET {{triliumHost}}/etapi/branches/{{createdBranchId}} | ||
|  | 
 | ||
|  | > {%  | ||
|  | client.assert(response.status === 200); | ||
|  | client.assert(response.body.prefix === 'pref'); | ||
|  | client.assert(response.body.notePosition === 666); | ||
|  | client.assert(response.body.isExpanded === true); | ||
|  | %} | ||
|  | 
 | ||
|  | ### | ||
|  | 
 | ||
|  | PATCH {{triliumHost}}/etapi/branches/{{createdBranchId}} | ||
|  | Content-Type: application/json | ||
|  | 
 | ||
|  | { | ||
|  |   "parentNoteId": "root" | ||
|  | } | ||
|  | 
 | ||
|  | > {%  | ||
|  |     client.assert(response.status === 400);  | ||
|  |     client.assert(response.body.code == "PROPERTY_NOT_ALLOWED_FOR_PATCH"); | ||
|  | %} | ||
|  | 
 | ||
|  | ### | ||
|  | 
 | ||
|  | PATCH {{triliumHost}}/etapi/branches/{{createdBranchId}} | ||
|  | Content-Type: application/json | ||
|  | 
 | ||
|  | { | ||
|  |   "prefix": 123 | ||
|  | } | ||
|  | 
 | ||
|  | > {%  | ||
|  |     client.assert(response.status === 400);  | ||
|  |     client.assert(response.body.code == "PROPERTY_VALIDATION_ERROR"); | ||
|  | %} |