Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Optional filter to retrieve a specific customer by their unique identifier. If provided, returns only the customer matching this ID
Optional filter to retrieve all customers associated with a specific payment method. Useful for filtering customers when managing multiple payment methods
Optional filter to retrieve all customers associated with a specific merchant. Useful for filtering customers when managing multiple merchants
Optional filter to retrieve all customers associated with a specific customer reference ID. Useful for filtering customers when managing multiple customers
Optional filter to retrieve all customers associated with a specific subscription. Useful for filtering customers when managing multiple subscriptions
Optional pagination parameter to specify the page number of the results to return. Default is 1 which is the first page.
Optional pagination parameter to specify the number of results per page. Default is 25, maximum is 100.
Optional sorting parameter to specify the field to sort the results by. Valid options are "customerId", "customerRefId", and "dateCreated". Default is "dateCreated".
Optional sorting parameter to specify the direction to sort the results by. Valid options are "asc" and "desc". Default is "desc".