Create a company note
POST /organizations/:organization_id/notes/
URL
https://system_domain/api/v2/organizations/123/notes/
Parameters
PATH-parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
organization_id | number | Yes | ID of the company |
Request body parameters (form-data)
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | Yes | Response text |
file | array | No | Array of files |
Responses
Response example
Response example
{
"data": {
"id": 23,
"creator_id": 1,
"organiz_id": 123,
"text": "Note text",
"date_created": "20:12:08 12.03.2025",
"date_updated": "20:12:08 12.03.2025",
"file": []
}
}