Skip to main content
GET
/
api
/
v1
/
accounts
/
{account_id}
/
leads
/
{lead_id}
/
notes
List lead notes
curl --request GET \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/leads/{lead_id}/notes \
  --header 'api_access_token: <api-key>'
[
  {
    "id": 1,
    "content": "Called prospect, left voicemail.",
    "author": {
      "id": 1,
      "name": "Jane Smith",
      "email": "jane@example.com",
      "avatar_url": "<string>"
    },
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://developers.voxys.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

api_access_token
string
header
required

API access token for authentication. Obtain from your Voxys Connect profile settings.

Path Parameters

account_id
integer
required

The numeric ID of the account.

lead_id
integer
required

The ID of the lead.

Response

List of notes.

id
integer
Example:

1

content
string
Example:

"Called prospect, left voicemail."

author
object
created_at
string<date-time>