Skip to main content
POST
/
contacts
/
createContactNote
Create a new contact note
curl --request POST \
  --url https://api-dev.iclosed.io/contacts/createContactNote \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contactId": 123,
  "note": "<string>"
}'
{
  "message": "Contact note added successfully",
  "status": 200
}

Authorizations

Authorization
string
header
required

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

Body

application/json
contactId
integer
required

ID of the contact to add note for

note
string
required

Content of the note

Maximum length: 1000

Response

Successfully created contact note

message
string
required

Success message

Example:

"Contact note added successfully"

status
integer
required

HTTP status code

Example:

200

I