cURL
curl --request GET \ --url https://api.creem.io/v1/customers/list \ --header 'x-api-key: <x-api-key>'
{ "items": [ { "id": "<string>", "mode": "test", "object": "<string>", "email": "[email protected]", "country": "US", "created_at": "2023-01-01T00:00:00Z", "updated_at": "2023-01-01T00:00:00Z", "name": "John Doe" } ], "pagination": { "total_records": 0, "total_pages": 0, "current_page": 1, "next_page": 2, "prev_page": null } }
Retrieve a paginated list of all customers. Filter and search through your customer base.
The page number
The page size
Successfully retrieved customers
List of customer items
Show child attributes
Unique identifier for the object.
String representing the environment.
test
prod
sandbox
String representing the object’s type. Objects of the same type share the same value.
Customer email address.
"[email protected]"
The ISO alpha-2 country code for the customer.
"US"
Creation date of the product
"2023-01-01T00:00:00Z"
Last updated date of the product
Customer name.
"John Doe"
Pagination details for the list
Total number of records in the list
0
Total number of pages available
The current page number
1
The next page number, or null if there is no next page
2
The previous page number, or null if there is no previous page
null