Skip to main content
POST
/
api
/
v1
/
accounts
/
{account_id}
/
companies
/
{id}
/
contacts
Add a contact to a company
curl --request POST \
  --url https://connect.voxys.ai/api/v1/accounts/{account_id}/companies/{id}/contacts \
  --header 'Content-Type: application/json' \
  --header 'api_access_token: <api-key>' \
  --data '
{
  "contact_id": 200
}
'
{
  "id": 200,
  "name": "John Doe",
  "email": "john@acme.com",
  "phone_number": "+19715552345",
  "avatar_url": "<string>"
}

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.

id
integer
required

The ID of the company.

Body

application/json
contact_id
integer
required
Example:

200

Response

Contact added successfully.

id
integer
Example:

200

name
string
Example:

"John Doe"

email
string<email> | null
Example:

"john@acme.com"

phone_number
string | null
Example:

"+19715552345"

avatar_url
string<uri> | null