Notes
Create Note
Creates a note on the target lead.
Notes:
- leadId, content and isPin are required; content must not be blank.
- content is silently truncated to 2000 characters.
- Caller must have access to the lead; otherwise 404 LEAD_NOT_EXIST.
- The response contains only the new note’s ID under the ‘noteId’ key.
- Persistence is asynchronous: subsequent GET and PUT on the returned noteId may briefly return 404 immediately after create. DELETE is unaffected.
POST
Create Note
Body
application/json
Note payload.
Note content. Silently truncated to 2000 characters.
Maximum string length:
2000Example:
"Discussed Austin inventory, will send pre-approval doc tomorrow."
ID of the lead this note belongs to. Must be accessible to the caller.
Example:
563172647619608
Whether to pin this note to the top of the lead's timeline.
Example:
false
Response
Note created. Response contains the new note's ID.
Wrapped response for POST /v1.0/notes. The new note's ID is returned under the 'noteId' key.
ID of the newly created note.
Example:
563172647619608