Pagination
Parameter
Default
Maximum
Description
GET /v2/customers?page=2&per_page=25{
"data": [
{ "id": "cus_123", "email": "[email protected]", ... },
{ "id": "cus_124", "email": "[email protected]", ... }
],
"pagination": {
"page": 2,
"limit": 25,
"total": 150,
"pages": 6
}
}Last updated