Skip to main content
POST
/
v1
/
contacts
/
notes
Create contact note
curl --request POST \
  --url http://localhost:4000/v1/contacts/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contactId": 2,
  "note": "<string>"
}
'
{
  "message": "<string>",
  "status": 123
}

Authorizations

Authorization
string
header
required

API key required in Authorization header. Format: iclosed-<token>

Body

application/json
contactId
integer
required

Contact ID

Required range: x >= 1
note
string
required

Note content (plain text or HTML)

Required string length: 1 - 10000

Response

Contact note created successfully

message
string
status
number