Creates a note on the target lead.
Notes:
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.
Note payload.
Note content. Silently truncated to 2000 characters.
2000"Discussed Austin inventory, will send pre-approval doc tomorrow."
ID of the lead this note belongs to. Must be accessible to the caller.
563172647619608
Whether to pin this note to the top of the lead's timeline.
false
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.
563172647619608
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
}