Skip to main content
GET
/
v1.0
/
notes
List 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.

Headers

Authorization
string
required

Bearer [access_token]

Query Parameters

leadId
integer<int64>
required

ID of the lead whose notes to return.

Required range: x >= 1
includeSystemNote
boolean
default:false

When true, include system-generated notes alongside user-created notes.

Response

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
object[]

Notes attached to the lead.