Skip to main content
GET
/
contacts
/
{contactId}
/
notes
Get All Notes
curl --request GET \
  --url https://services.leadconnectorhq.com/contacts/{contactId}/notes \
  --header 'Authorization: Bearer <token>' \
  --header 'Version: <version>'
{
  "notes": [
    {
      "id": "HGPcayliwcdoUFzvbTok",
      "body": "lorem ipsum",
      "userId": "TUcmRxWrjqzJS8EjkxNK",
      "dateAdded": "2021-07-08T12:02:11.285Z",
      "contactId": "TUcmRxWrjqzJS8EjkxNK"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

contactId
string
required

Contact Id

Example:

"sx6wyHhbFdRXh302LLNR"

Response

Successful response

notes
object[]
Last modified on March 4, 2026