Individuals

Create A Note

POSThttps://api.getcovent.com/api/v1/individuals/{id}/notes

Create 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/json
Content-TypestringRequired

JSON request body header.

Example: application/json

idstringRequired

id path parameter.

Example: <id>

bodystringRequired

body request field.

Example: Prefers duplex deals in Phoenix under 500k.
visibilitystringRequired

visibility request field.

Example: internal
categorystringRequired

category request field.

Example: buy_box

Response

200application/json

idstringRequired

id response field.

Example: note_123
bodystringRequired

body response field.

Example: Prefers duplex deals in Phoenix under 500k.
visibilitystringRequired

visibility response field.

Example: internal
categorystringRequired

category response field.

Example: buy_box
created_atstringRequired

created_at response field.

Example: 2026-04-17T18:00:00Z

Response Example

{
  "id": "note_123",
  "body": "Prefers duplex deals in Phoenix under 500k.",
  "visibility": "internal",
  "category": "buy_box",
  "created_at": "2026-04-17T18:00:00Z"
}