Skip to main content
PUT
/
v1.0
/
notes
/
{noteId}
Update Note
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.

Headers

Authorization
string
required

Bearer [access_token]

Content-Type
string
required

application/json

Path Parameters

noteId
integer<int64>
required

ID of the note to update.

Required range: x >= 1

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 updated successfully. No response body.