Authorizations
The API key to use for authentication
Query Parameters
Search for a customer by name or phone number
Example:
"John Doe"
Cursor for pagination, representing the last item from the previous page
Example:
"eyJpZCI6IjEyMyJ9"
The number of customers to return (1-100)
Required range:
1 <= x <= 100
Example:
10
Start date (inclusive) for filtering customers in ISO 8601 format
Example:
"2024-12-01T00:00:00.000Z"
End date (inclusive) for filtering customers in ISO 8601 format
Example:
"2024-12-31T23:59:59.999Z"
The order in which to sort results. Defaults to 'desc'
. Use 'asc'
for ascending (oldest first) or 'desc'
for descending (newest first).
Available options:
asc
, desc
Example:
"desc"
The field to sort results by. Defaults to 'createdAt'
. Supported fields include any sortable customer property.
Available options:
createdAt
, name
, lastActiveAt
, countryCode
, email
, phoneNumber
, firstTransactionAt
, isActive
, isVerified
Example:
"createdAt"