Updates the content and pin state of an existing note.
Notes:
curl --request PUT \
--url https://api.lofty.com/v1.0/notes/{noteId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
"leadId": 563172647619608,
"isPin": false
}
'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.
ID of the note to update.
x >= 1Note 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 updated successfully. No response body.
curl --request PUT \
--url https://api.lofty.com/v1.0/notes/{noteId} \
--header 'Authorization: <authorization>' \
--header 'Content-Type: <content-type>' \
--data '
{
"content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
"leadId": 563172647619608,
"isPin": false
}
'