Skip to main content
DELETE
/
v1
/
contact-lists
/
{id}
/
contacts
/
{contactId}
cURL
curl --request DELETE \
  --url https://client-api.salesfinity.co/v1/contact-lists/{id}/contacts/{contactId} \
  --header 'x-api-key: <api-key>'
{
  "message": "Contact removed successfully"
}
Removes a contact from an existing contact list. The contact is removed from both the source list and the dialing queue.

Path Parameters

  • id (required, string): Contact list ID.
  • contactId (required, string): ID of the contact to remove.

Response (200)

{
  "success": true
}

Errors

StatusDescription
404Contact list not found

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The ID of the contact list.

contactId
string
required

The ID of the contact to remove.

Response

Contact removed successfully

message
string