Notes API
Add Note
POST /api/v1/notesScope: notes:write
Add a note to a contact, account, or opportunity. Notes are visible in the ScendCore dashboard and are included in AI agent context.
Request Body
{
"entity_type": "contact",
"entity_id": "uuid-of-contact",
"content": "Called and discussed pricing. Interested in Pro plan. Follow up next week.",
"author": "Sprintmore Agent"
}| Field | Required | Description |
|---|---|---|
entity_type | Yes | contact, account, or opportunity |
entity_id | Yes | ID of the entity to add the note to |
content | Yes | The note text |
author | No | Name of the author (default: “API”) |
Response (201)
{
"note": {
"id": "uuid",
"created_at": "2026-03-26T10:00:00Z"
}
}Last updated on