# Create company note
You can create a note for a company.
POST
/companies/:company_id/notes/
Attributes | Type | Required | Description |
---|---|---|---|
company_id | integer | yes | A unique identifier for the company which is given by User.com automatically. |
agent_id | integer | no | A unique identifier of an agent who is the author of a note. |
note | string | yes | A text of the note. |
created_at | datetime | no | A datetime of the note creation given in the UNIX format. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2" -H "Content-Type: application/json" -d '{
"note": "my note content"
}' "https://<your_app_subdomain>.user.com/api/public/companies/:company_id/notes/"
# Response
{
"id": 27785,
"note": "my note content",
"author": 382
}