POST
/
v1
/
contact-lists
curl --request POST \
  --url https://client-api.salesfinity.co/v1/contact-lists \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "user_id": "<string>",
  "contacts": [
    {
      "account": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "linkedin": "<string>",
      "email": "<string>",
      "website": "<string>",
      "notes": "<string>",
      "phone_numbers": [
        {
          "type": "mobile",
          "number": "<string>",
          "country_code": "<string>",
          "extension": "<string>"
        }
      ],
      "company": "<string>",
      "title": "<string>",
      "priority": 123,
      "timezone": "<string>",
      "external_relations": {}
    }
  ]
}'
{}

Creates a new contact list within the dialer application. This endpoint allows users to set up lists that can contain multiple contacts for organized outreach efforts.

  • Request Body: CreateContactListDTO
  • Response (201): Confirmation of contact list creation with details.

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required
Required string length: 1 - 100
user_id
string
required
contacts
object[]
required

Response

201
application/json
Contact list created successfully

The response is of type object.