Description
Retrieve a note.
Request
HTTP Method: GET
Parameter | Description |
---|---|
note_id | The ID of the note to retrieve. |
curl -X GET \
https://<<META.tenant.domain>>/api/v1/notes/<<note_id>> \
-H 'content-type: application/json' \
-H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'
Response
A successful request will return a JSON object representing the specified note.
Field description
Parameter | Description |
---|---|
id | The note ID. |
story_id | ID of story to which the note belongs. |
story_mode | Mode of the story to which the note belongs LIVE or TEST |
group_id | ID of group to which the note belongs. |
content | The note Markdown formatted content. |
position | An object describing the XY coordinates of the position on the story diagram. |
Sample response
{
"id": 21405,
"story_id": 813,
"story_mode": "LIVE",
"group_id": null,
"position": {
"x": 0,
"y": 0
},
"content": "# Header\n This is a list \n - item 1"
}