cURL
curl --request POST \ --url http://localhost:4000/v1/contacts/notes \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "contactId": 2, "note": "<string>" } '
201
Example
{ "message": "<string>", "status": 123 }
Create a note for a contact
API key required in Authorization header. Format: iclosed-<token>
iclosed-<token>
Contact ID
x >= 1
Note content (plain text or HTML)
1 - 10000
Contact note created successfully