mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			127 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			HTTP
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			HTTP
		
	
	
	
	
	
| POST {{triliumHost}}/etapi/create-note
 | |
| Content-Type: application/json
 | |
| 
 | |
| {
 | |
|   "parentNoteId": "root",
 | |
|   "title": "Hello",
 | |
|   "type": "text",
 | |
|   "content": "Hi there!"
 | |
| }
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body.note.title == "Hello");
 | |
|         client.assert(response.body.branch.parentNoteId == "root");
 | |
|     });
 | |
| 
 | |
|     client.log(`Created note ` + response.body.note.noteId + ` and branch ` + response.body.branch.branchId);
 | |
|     
 | |
|     client.global.set("createdNoteId", response.body.note.noteId);
 | |
|     client.global.set("createdBranchId", response.body.branch.branchId);
 | |
| %}
 | |
| 
 | |
| ### Clone to another location
 | |
| 
 | |
| POST {{triliumHost}}/etapi/branches
 | |
| Content-Type: application/json
 | |
| 
 | |
| {
 | |
|   "noteId": "{{createdNoteId}}",
 | |
|   "parentNoteId": "hidden"
 | |
| }
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body.parentNoteId == "hidden");
 | |
|     });
 | |
| 
 | |
|     client.global.set("clonedBranchId", response.body.branchId);
 | |
|     
 | |
|     client.log(`Created cloned branch ` + response.body.branchId);
 | |
| %}
 | |
| 
 | |
| ###
 | |
| 
 | |
| GET {{triliumHost}}/etapi/notes/{{createdNoteId}}
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body.noteId == client.global.get("createdNoteId"));
 | |
|         client.assert(response.body.title == "Hello");
 | |
|         // order is not defined and may fail in the future
 | |
|         client.assert(response.body.parentBranchIds[0] == client.global.get("clonedBranchId"))
 | |
|         client.assert(response.body.parentBranchIds[1] == client.global.get("createdBranchId"));
 | |
|     });
 | |
| %}
 | |
| 
 | |
| ###
 | |
| 
 | |
| GET {{triliumHost}}/etapi/notes/{{createdNoteId}}/content
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body == "Hi there!");
 | |
|     });
 | |
| %}
 | |
| 
 | |
| ###
 | |
| 
 | |
| GET {{triliumHost}}/etapi/branches/{{createdBranchId}}
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body.branchId == client.global.get("createdBranchId"));
 | |
|         client.assert(response.body.parentNoteId == "root");
 | |
|     });
 | |
| %}
 | |
| 
 | |
| ###
 | |
| 
 | |
| GET {{triliumHost}}/etapi/branches/{{clonedBranchId}}
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body.branchId == client.global.get("clonedBranchId"));
 | |
|         client.assert(response.body.parentNoteId == "hidden");
 | |
|     });
 | |
| %}
 | |
| 
 | |
| ###
 | |
| 
 | |
| POST {{triliumHost}}/etapi/attributes
 | |
| Content-Type: application/json
 | |
| 
 | |
| {
 | |
|   "noteId": "{{createdNoteId}}",
 | |
|   "type": "label",
 | |
|   "name": "mylabel",
 | |
|   "value": "val",
 | |
|   "isInheritable": "true"
 | |
| }
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|     });
 | |
| 
 | |
|     client.log(`Created attribute ` + response.body.attributeId);
 | |
|     
 | |
|     client.global.set("createdAttributeId", response.body.attributeId);
 | |
| %}
 | |
| 
 | |
| ###
 | |
| 
 | |
| GET {{triliumHost}}/etapi/attributes/{{createdAttributeId}}
 | |
| 
 | |
| > {%
 | |
|     client.test("Request executed successfully", function() {
 | |
|         client.assert(response.status === 200, "Response status is not 200");
 | |
|         client.assert(response.body.attributeId == client.global.get("createdAttributeId"));
 | |
|     });
 | |
| %} |