Returns all notes attached to the given lead.
Notes:
curl --request GET \
--url https://api.lofty.com/v1.0/notes \
--header 'Authorization: <authorization>'{
"notes": [
{
"id": 563172647619608,
"noteId": 400000012345,
"creatorId": 100234,
"leadId": 100001,
"createTime": "2026-04-22 10:15:30",
"deleteFlag": false,
"content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
"lastUpdate": "2026-04-22 10:20:00",
"lastEditorId": 100234,
"creatorName": "Alice Johnson",
"lastEditorName": "Alice Johnson",
"isPin": false,
"systemNote": 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.
Bearer [access_token]
ID of the lead whose notes to return.
x >= 1When true, include system-generated notes alongside user-created notes.
Notes for the lead (empty array when the lead has no notes).
Wrapped response for GET /v1.0/notes. Note entries are returned under the 'notes' key.
Notes attached to the lead.
Show child attributes
curl --request GET \
--url https://api.lofty.com/v1.0/notes \
--header 'Authorization: <authorization>'{
"notes": [
{
"id": 563172647619608,
"noteId": 400000012345,
"creatorId": 100234,
"leadId": 100001,
"createTime": "2026-04-22 10:15:30",
"deleteFlag": false,
"content": "Discussed Austin inventory, will send pre-approval doc tomorrow.",
"lastUpdate": "2026-04-22 10:20:00",
"lastEditorId": 100234,
"creatorName": "Alice Johnson",
"lastEditorName": "Alice Johnson",
"isPin": false,
"systemNote": false
}
]
}