trilium/test-etapi/create-entities.http

125 lines
3.2 KiB
Plaintext
Raw Normal View History

2022-01-08 02:33:59 +08:00
POST {{triliumHost}}/etapi/create-note
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
Content-Type: application/json
{
2022-01-13 02:32:23 +08:00
"noteId": "forcedId{{$randomInt}}",
"branchId": "forcedId{{$randomInt}}",
2022-01-06 02:25:17 +08:00
"parentNoteId": "root",
"title": "Hello",
"type": "text",
"content": "Hi there!"
}
> {%
client.assert(response.status === 201);
2022-01-13 02:32:23 +08:00
client.assert(response.body.note.noteId.startsWith("forcedId"));
client.assert(response.body.note.title == "Hello");
client.assert(response.body.branch.branchId.startsWith("forcedId"));
client.assert(response.body.branch.parentNoteId == "root");
2022-01-06 02:25:17 +08:00
2022-01-08 02:33:59 +08:00
client.log(`Created note ` + response.body.note.noteId + ` and branch ` + response.body.branch.branchId);
2022-01-06 02:25:17 +08:00
client.global.set("createdNoteId", response.body.note.noteId);
client.global.set("createdBranchId", response.body.branch.branchId);
%}
2022-01-08 02:33:59 +08:00
### Clone to another location
POST {{triliumHost}}/etapi/branches
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-08 02:33:59 +08:00
Content-Type: application/json
{
2022-01-13 02:32:23 +08:00
"branchId": "forcedClonedId",
2022-01-08 02:33:59 +08:00
"noteId": "{{createdNoteId}}",
"parentNoteId": "hidden"
}
> {%
client.assert(response.status === 201);
2022-01-13 02:32:23 +08:00
client.assert(response.body.parentNoteId == "hidden");
2022-01-08 02:33:59 +08:00
client.global.set("clonedBranchId", response.body.branchId);
2022-01-08 02:33:59 +08:00
client.log(`Created cloned branch ` + response.body.branchId);
%}
2022-01-06 02:25:17 +08:00
###
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
2022-01-13 02:32:23 +08:00
client.assert(response.status === 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"));
2022-01-06 02:25:17 +08:00
%}
###
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}/content
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
2022-01-13 02:32:23 +08:00
client.assert(response.status === 200);
client.assert(response.body == "Hi there!");
2022-01-06 02:25:17 +08:00
%}
###
GET {{triliumHost}}/etapi/branches/{{createdBranchId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
2022-01-13 02:32:23 +08:00
client.assert(response.status === 200);
client.assert(response.body.branchId == client.global.get("createdBranchId"));
client.assert(response.body.parentNoteId == "root");
2022-01-06 02:25:17 +08:00
%}
###
2022-01-08 02:33:59 +08:00
GET {{triliumHost}}/etapi/branches/{{clonedBranchId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-08 02:33:59 +08:00
> {%
2022-01-13 02:32:23 +08:00
client.assert(response.status === 200);
client.assert(response.body.branchId == client.global.get("clonedBranchId"));
client.assert(response.body.parentNoteId == "hidden");
2022-01-08 02:33:59 +08:00
%}
###
2022-01-06 02:25:17 +08:00
POST {{triliumHost}}/etapi/attributes
Content-Type: application/json
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
{
2022-01-13 02:32:23 +08:00
"attributeId": "forcedAttributeId{{$randomInt}}",
2022-01-06 02:25:17 +08:00
"noteId": "{{createdNoteId}}",
"type": "label",
"name": "mylabel",
"value": "val",
2022-01-13 02:32:23 +08:00
"isInheritable": true
2022-01-06 02:25:17 +08:00
}
> {%
client.assert(response.status === 201);
2022-01-13 02:32:23 +08:00
client.assert(response.body.attributeId.startsWith("forcedAttributeId"));
2022-01-06 02:25:17 +08:00
client.global.set("createdAttributeId", response.body.attributeId);
%}
###
GET {{triliumHost}}/etapi/attributes/{{createdAttributeId}}
2022-01-11 00:09:20 +08:00
Authorization: {{authToken}}
2022-01-06 02:25:17 +08:00
> {%
2022-01-13 02:32:23 +08:00
client.assert(response.status === 200);
client.assert(response.body.attributeId == client.global.get("createdAttributeId"));
%}