Get a paginated list of customer entities with selectable attributes, filtering, grouping, and sorting.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number for pagination.
x >= 1Number of entities per page.
1 <= x <= 100Filters to apply. Pass as a URL-encoded JSON string.
Example usage in query string:
filters=%7B%22entityFor%22%3A%22customer%22%7D
Example usage in code:
filters: encodeURIComponent(JSON.stringify({ entityFor: "customer" }))
List of attributes to return. Pass as a URL-encoded JSON array.
Example usage in query string:
attributes=%5B%22id%22%2C%22legalName%22%2C%22bankDetails%22%2C%22alias%22%2C%22Addresses.address1%22%2C%22Addresses.address2%22%2C%22Addresses.city%22%2C%22Addresses.zip%22%2C%22Addresses.State.name%22%2C%22Addresses.State.Country.name%22%2C%22email%22%2C%22phoneNumber%22%2C%22cc%22%2C%22bcc%22%2C%22Customer.name%22%2C%22entityForId%22%2C%22contractCount%22%5D
Fields to group by. Pass as a URL-encoded JSON array.
Example usage in query string:
groupBy=%5B%22Entity.id%22%2C%22Addresses.id%22%5D
Field to sort by.
"createdAt"
Sort order.
asc, desc "desc"