Skip to main content

Retrieve a note

Retrieves a note object.

Parameters

expand
array
Array of relationships to expand. Supported values: author, task.

Returns

Returns the note object for a valid identifier.

get
/api/tasks/{id}/notes/{id}
curl https://{workspace}.kitchen.co/api/tasks/{id}/notes/{id} \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-Requested-With: XMLHttpRequest' \
-H 'Authorization: Bearer {API_KEY}'
Response
{
"author": "u_c01bb6102b6ddadd4b1f020e",
"content": "The note content",
"task": "tsk_225b227c7a59d4c65c2feaed",
"created_at": "2024-01-23T23:09:00+00:00",
"format": "text",
"id": "msg_3447589816730d8ba4e50528",
"updated_at": "2024-01-23T23:09:00+00:00"
}