# Create user note
You can create a note for a user.
POST /users/:user_id/notes/
| Attributes | Type | Required | Description | 
|---|---|---|---|
| user_id | integer | yes | A unique identifier for the user 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/users/:user_id/notes/"
# Response
{
  "id": 27785,
  "note": "my note content",
  "author": 382
}