Customers
List all customers
Retrieve a paginated list of all customers. Filter and search through your customer base.
get/v1/customers/list
Query parameters
page_numbernumber
Example:1
The page number for pagination.
page_sizenumber
Example:50
The number of items per page.
Response
Successfully retrieved customers
Example response
{
"items": [
{
"email": "user@example.com",
"name": "John Doe",
"metadata": {
"key": "value"
},
"country": "US",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
}
],
"pagination": {
"current_page": 1,
"next_page": 2
}
}