Skip to main content
POST
/
v1
/
contact-lists
/
{id}
cURL
curl --request POST \
  --url https://client-api.salesfinity.co/v1/contact-lists/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "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": {}
}'
"<any>"
Adds a new contact to an existing contact list, identified by the list ID. Important! Once you add contacts to a list, it won’t automatically appear on the dialer. To make sure contacts appear on the dialer, you’d need to call Add the list to a queue Endpoint. See here: https://docs.salesfinity.ai/api-reference/endpoint/reimport-contacts
  • Path Parameter: id (string, required) - ID of the contact list.
  • Request Body: ContactListContactDTO
  • Response (201): Details of the newly added contact.

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Body

application/json
first_name
string
required
phone_numbers
object[]
required
account
string
last_name
string
linkedin
string
email
string
website
string
notes
string
company
string
title
string
priority
number
timezone
string
external_relations
object

Response

201 - application/json

Contact added successfully

The response is of type any.

I