2023-07-11 01:10:07 +08:00
|
|
|
POST {{triliumHost}}/etapi/create-note
|
|
|
|
Authorization: {{authToken}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
|
|
|
"parentNoteId": "root",
|
|
|
|
"title": "GetInheritedAttributes Test Note",
|
|
|
|
"type": "text",
|
|
|
|
"content": "Hi there!"
|
|
|
|
}
|
|
|
|
|
|
|
|
> {%
|
|
|
|
client.assert(response.status === 201);
|
|
|
|
client.global.set("parentNoteId", response.body.note.noteId);
|
|
|
|
%}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
2023-06-01 01:11:42 +08:00
|
|
|
POST {{triliumHost}}/etapi/attributes
|
|
|
|
Authorization: {{authToken}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
2023-07-11 01:10:07 +08:00
|
|
|
"noteId": "{{parentNoteId}}",
|
2023-06-01 01:11:42 +08:00
|
|
|
"type": "label",
|
|
|
|
"name": "mylabel",
|
|
|
|
"value": "val",
|
|
|
|
"isInheritable": true
|
|
|
|
}
|
|
|
|
|
|
|
|
> {% client.global.set("createdAttributeId", response.body.attributeId); %}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
POST {{triliumHost}}/etapi/create-note
|
|
|
|
Authorization: {{authToken}}
|
|
|
|
Content-Type: application/json
|
|
|
|
|
|
|
|
{
|
2023-07-11 01:10:07 +08:00
|
|
|
"parentNoteId": "{{parentNoteId}}",
|
2023-06-01 01:11:42 +08:00
|
|
|
"title": "Hello",
|
|
|
|
"type": "text",
|
|
|
|
"content": "Hi there!"
|
|
|
|
}
|
|
|
|
|
|
|
|
> {%
|
|
|
|
client.global.set("createdNoteId", response.body.note.noteId);
|
|
|
|
client.global.set("createdBranchId", response.body.branch.branchId);
|
|
|
|
%}
|
|
|
|
|
|
|
|
###
|
|
|
|
|
|
|
|
GET {{triliumHost}}/etapi/notes/{{createdNoteId}}
|
|
|
|
Authorization: {{authToken}}
|
|
|
|
|
|
|
|
> {%
|
|
|
|
client.assert(response.status === 200);
|
|
|
|
client.assert(response.body.noteId == client.global.get("createdNoteId"));
|
|
|
|
client.assert(response.body.attributes.length == 1);
|
2023-07-11 01:10:07 +08:00
|
|
|
client.assert(response.body.attributes[0].attributeId == client.global.get("createdAttributeId"));
|
2023-06-01 01:11:42 +08:00
|
|
|
%}
|