Returns all CSV contact lists for the team with filtering, sorting, and pagination.
| 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 |
| 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 |
Search lists by name (case-insensitive)
Filter by user ID
Sort field. Prefix with - for descending. Default: -createdAt
Page number
x >= 1Items per page
1 <= x <= 100