List customers
Available for Text App only. Searches and lists customers with filtering, sorting, and pagination.
customers:roAuthorizations
Use your account ID as the username and your personal access token (PAT) as the password, or pass a Base64-encoded value directly in the Authorization header. For more information, see the personal access tokens guide.
Body
A free-text search query across name, email, and phone_number fields. Automatically excludes fields that are explicitly filtered.
3"john smith"
An array of filter groups combined with AND logic.
The number of results to return per page.
1 <= x <= 100The sorting configuration (field -> order mapping). Multiple sort fields can be specified. Note: created_at is always appended as the final sort field to ensure stable pagination.
The page identifier for pagination. Should be a numeric string starting from "1". Use the next_page_id from the previous response to navigate to the next page.
"1"
Response
A list of customers matching the search criteria.
An array of customer objects matching the search criteria.
The total number of customers matching the search criteria.
1523
The current page identifier.
"1"
The page identifier for the next page of results. Empty string if there are no more pages. Pass this value as page_id in the next request to retrieve the next page.
"2"