Skip to main content
POST
/
api
/
v1
/
create-list
Create list
curl --request POST \
  --url https://voxworks.ai/api/v1/create-list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "February follow-up list"
}
'
{
  "success": true,
  "list_id": "<string>",
  "list": {
    "id": "<string>",
    "name": "<string>",
    "team_id": "<string>",
    "contacts": [
      {
        "id": "<string>",
        "team_id": "<string>",
        "phone_number": "+61429069971",
        "first_name": "<string>",
        "last_name": "<string>",
        "full_name": "<string>",
        "email": "<string>",
        "object_data": {}
      }
    ]
  }
}

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.

Body

application/json
name
string
required
Maximum string length: 255

Response

List created.

success
boolean
list_id
string
list
object