For the complete documentation index, see llms.txt. This page is also available as Markdown.

Contact Lists

Organize contacts into lists

Manage contact lists

Get all Contact Lists

get

Get all contact lists existing in your account

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Query parameters
searchstringOptional

Filter contact lists by name (case-insensitive prefix match).

Example: news
Responses
200

OK.

application/json
idintegerOptional
namestring · max: 255Optional
get/api/contacts/lists

Create Contact List

post

Create new Contact Lists

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Body
namestringOptional
Responses
200

Contact List Created.

application/json
idintegerOptional
namestring · max: 255Optional
post/api/contacts/lists

Get Contact List

get

Get a contact list by ID

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Path parameters
list_idinteger · int64 · min: 1Required

Unique list ID

Example: 3229
Responses
200

Returns attributes of the contact list.

application/json
idintegerOptional
namestring · max: 255Optional
get/api/contacts/lists/{list_id}

Delete Contact List

delete

Delete existing Contact List

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Path parameters
list_idinteger · int64 · min: 1Required

Unique list ID

Example: 3229
Responses
204

Contact List successfully deleted

No content

delete/api/contacts/lists/{list_id}

No content

Update Contact List

patch

Update existing Contact List

Authorizations
Api-TokenstringRequired

Pass the API token in the Api-Token

Path parameters
list_idinteger · int64 · min: 1Required

Unique list ID

Example: 3229
Body
namestring · max: 255Optional
Responses
200

OK.

application/json
idintegerOptional
namestring · max: 255Optional
patch/api/contacts/lists/{list_id}

Last updated

Was this helpful?