contacts
Create Contact Note
Creates a new note entry associated with a specific contact.
Required Fields:
- note: The body text of the note (max 1000 characters).
Behavior:
- Returns 201 with empty body.
- Returns 400 if required fields are missing or fail validation constraints.
- Returns 401 if the caller is not authenticated.
- Returns 404 if the contactId does not exist.
This endpoint is rate limited. Use the RateLimit-* response headers to check current limits and remaining quota.
post/contacts/{contactId}/notes
Path parameters
contactIdstring uuid required
The contact's unique identifier
Request body
Example request
{
"id": "cf3987e6-24bc-4b34-91bb-e230cd4ea6d7",
"_link": "https://api.acculynx.com/v2/contacts/61370abe-3534-4ba8-b2f2-2ff56cdd5e02/notes/cf3987e6-24bc-4b34-91bb-e230cd4ea6d7",
"note": "Text from the note.",
"createdDate": "2026-03-25T09:30:00Z",
"createdBy": {
"id": "228db892-3b49-4455-b839-ffd8576d8731",
"_link": "https://api.acculynx.com/api/v2/users/228db892-3b49-4455-b839-ffd8576d8731"
},
"updatedDate": "2026-03-26T09:30:00Z",
"updatedBy": {
"id": "228db892-3b49-4455-b839-ffd8576d8731",
"_link": "https://api.acculynx.com/api/v2/users/228db892-3b49-4455-b839-ffd8576d8731"
}
}Response
Created