Skip to main content
POST
/
api
/
v1
/
add-contacts-to-list
/
{list_id}
Create or add contacts to list
curl --request POST \
  --url https://voxworks.ai/api/v1/add-contacts-to-list/{list_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contacts": [
    {
      "phone_number": "0429069971",
      "first_name": "John",
      "last_name": "Smith"
    }
  ]
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.voxworks.ai/llms.txt

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

Authorizations

Authorization
string
header
required

API key from Voxworks, sent as Authorization: Bearer YOUR_API_KEY.

Path Parameters

list_id
string
required

Unique list ID.

Body

application/json
contacts
object[]
contact
object

Response

Contacts added.

The response is of type object.