Create a User Note
POST /users/:user_id/notes/
Example URL
https://system_domain/api/v2/users/123/notes/
PATH Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
user_id | number | Yes | User ID |
Request Body Parameters (form-data)
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | Yes | Note text |
file | array | No | Array of files |
Response example:
Response example
{
"data": {
"id": 23,
"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": []
}
}