Get all CSV contact lists
Contact Lists
Get All Lists
Returns all CSV contact lists for the team with filtering, sorting, and pagination.
GET
Get all CSV contact lists
Returns all CSV contact lists for the team. This is the primary endpoint for listing your contact lists. Returns metadata only — use Get List by ID to see the contacts inside a list.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
search | string | Search lists by name (case-insensitive) |
filters[user] | string | Filter by user ID |
sort | string | Sort by field. Prefix with - for descending. Default: -createdAt. Examples: name, -updatedAt |
page | number | Page number. Default: 1 |
limit | number | Items per page. Default: 10 |
Response
Returns a paginated array of contact lists:| Field | Type | Description |
|---|---|---|
_id | string | Unique identifier of the contact list |
name | string | Name of the list |
user | string | ID of the user who owns the list |
total_contacts | number | Number of contacts in the list |
createdAt | string | Date the list was created |
updatedAt | string | Date the list was last updated |
Example Requests
Authorizations
Query Parameters
Search lists by name (case-insensitive)
Filter by user ID
Sort field. Prefix with - for descending. Default: -createdAt
Page number
Required range:
x >= 1Items per page
Required range:
1 <= x <= 100