Create A Note
POST
https://api.getcovent.com/api/v1/individuals/{id}/notesCreate a note tied to an individual.
How to Call
Use one of the examples below to call this endpoint from your own integration.
curl -X POST "https://api.getcovent.com/api/v1/individuals/{id}/notes" \
-H "Authorization: Bearer <API_KEY>" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"body": "Prefers duplex deals in Phoenix under 500k.",
"visibility": "internal",
"category": "buy_box"
}'Request
Review headers, parameters, and body fields before calling this endpoint.
AuthorizationstringRequired
Bearer token for the proposed external API contract.
Example: Bearer <API_KEY>AcceptstringRequired
Response format header.
Example: application/jsonContent-TypestringRequired
JSON request body header.
Example: application/jsonidstringRequired
id path parameter.
Example: <id>bodystringRequired
body request field.
Example: Prefers duplex deals in Phoenix under 500k.visibilitystringRequired
visibility request field.
Example: internalcategorystringRequired
category request field.
Example: buy_boxResponse
200application/jsonidstringRequired
id response field.
Example: note_123bodystringRequired
body response field.
Example: Prefers duplex deals in Phoenix under 500k.visibilitystringRequired
visibility response field.
Example: internalcategorystringRequired
category response field.
Example: buy_boxcreated_atstringRequired
created_at response field.
Example: 2026-04-17T18:00:00ZResponse Example
{
"id": "note_123",
"body": "Prefers duplex deals in Phoenix under 500k.",
"visibility": "internal",
"category": "buy_box",
"created_at": "2026-04-17T18:00:00Z"
}