Skip to Content

Notes API

Add Note

POST /api/v1/notes

Scope: 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" }
FieldRequiredDescription
entity_typeYescontact, account, or opportunity
entity_idYesID of the entity to add the note to
contentYesThe note text
authorNoName of the author (default: “API”)

Response (201)

{ "note": { "id": "uuid", "created_at": "2026-03-26T10:00:00Z" } }
Last updated on