Skip to main content

Get User Notes

GET /users/:user_id/notes/


Example URL

https://system_domain/api/v2/users/123/notes/


PATH Parameters

ParameterTypeRequiredDescription
user_idnumberYesUser ID

Query Parameters

ParameterTypeRequiredDescription
pagenumberYesPage number (30 notes are shown per page)

Response example:

Response example
{
"data": [
{
"id": 21,
"creator_id": 1,
"user_id": 123,
"text": "Note text",
"date_created": "20:12:08 12.03.2025",
"date_updated": "20:12:08 12.03.2025",
"file": []
}
],
"pagination": {
"total": 1,
"per_page": 30,
"current_page": 1,
"total_pages": 1
}
}