POST
/
api
/
v1
/
contacts
/
{id}
/
notes
curl -X POST https://api.ravan.ai/api/v1/contacts/019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b/notes \
  -H "X-Api-Key: YOUR_API_KEY" -H "Content-Type: application/json" \
  -d '{"content": "Interested in enterprise plan. Follow up after demo."}'
{
  "success": true, "message": "Note created successfully",
  "data": { "id": "019d5a4b-7c8d-9e0f-1a2b-3c4d5e6f7a8b", "contact_id": "019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b", "content": "Interested in enterprise plan. Follow up after demo.", "created_at": "2026-03-22T11:00:00Z" }
}

Authorizations

X-Api-Key
string
required
Your Agni API key.

Path Parameters

id
string
required
UUID of the contact.

Body

content
string
required
The note text to add.

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.
data
object
The created note record.
curl -X POST https://api.ravan.ai/api/v1/contacts/019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b/notes \
  -H "X-Api-Key: YOUR_API_KEY" -H "Content-Type: application/json" \
  -d '{"content": "Interested in enterprise plan. Follow up after demo."}'
{
  "success": true, "message": "Note created successfully",
  "data": { "id": "019d5a4b-7c8d-9e0f-1a2b-3c4d5e6f7a8b", "contact_id": "019d3a2b-5c6d-7e8f-9a0b-1c2d3e4f5a6b", "content": "Interested in enterprise plan. Follow up after demo.", "created_at": "2026-03-22T11:00:00Z" }
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

Contact ID

Body

application/json
content
string
required

Response

Successful response