# Create deal note

You can create a note for a deal.

POST /deals/:deal_id/

Attributes Type Required Description
deal_id integer yes A unique identifier for the deal 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/deals/:deal_id/notes/"

# Response

{
  "id": 27785,
  "note": "my note content",
  "author": 382
}