Skip to main content
POST
/
v1.0
/
notes
Create Note
curl --request POST \
  --url https://api.lofty.com/v1.0/notes \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
  "leadId": 563172647619608,
  "isPin": false
}
'
{
  "noteId": 563172647619608
}

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
required

Bearer [access_token]

Content-Type
string
required

application/json

Body

application/json

Note payload.

content
string
required

Note content. Silently truncated to 2000 characters.

Maximum string length: 2000
Example:

"Discussed Austin inventory, will send pre-approval doc tomorrow."

leadId
integer<int64>
required

ID of the lead this note belongs to. Must be accessible to the caller.

Example:

563172647619608

isPin
boolean
default:false
required

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.

noteId
integer<int64>

ID of the newly created note.

Example:

563172647619608