Returns a single note by its ID. The note must belong to a lead visible to the caller.
curl --request GET \
--url https://api.lofty.com/v1.0/notes/{noteId} \
--header 'Authorization: <authorization>'{
"note": {
"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 note to retrieve.
x >= 1Note retrieved successfully.
Wrapped response for GET /v1.0/notes/{noteId}. The note entry is returned under the 'note' key.
Note entry.
Show child attributes
curl --request GET \
--url https://api.lofty.com/v1.0/notes/{noteId} \
--header 'Authorization: <authorization>'{
"note": {
"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
}
}