Skip to main content
POST
/
api
/
v1
/
accounts
/
{account_id}
/
leads
/
{lead_id}
/
notes
Create a lead note
curl --request POST \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/leads/{lead_id}/notes \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "content": "Called prospect, left voicemail."
}
'
{
  "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.

Body

application/json
content
string
required
Example:

"Called prospect, left voicemail."

Response

Note created.

id
integer
Example:

1

content
string
Example:

"Called prospect, left voicemail."

author
object
created_at
string<date-time>