Customers
List customers
Returns a paginated list of customers associated with the authenticated account.
get/customers
Query parameters
pageinteger
Page number for pagination.
per_pageinteger
Number of results per page.
searchstring
Field to search by (e.g. email, tag).
querystring
Search term to filter by.
date_beginstring date
Example:2024-01-01
Start date filter (ISO 8601).
date_endstring date
Example:2024-12-31
End date filter (ISO 8601).
orderstring
Field to sort results by.
sort'asc' | 'desc'
Sort direction.
Response
Paginated list of customers
Example response
{
"current_page": 1,
"last_page": 5,
"per_page": 15,
"total": 73,
"from": 1,
"to": 15,
"data": [
{
"self": "/2.0/customers/abc123",
"prefix": "+34"
}
]
}