Paginated list of customers with at least one successful payment on your products.
cURL
curl --request GET \ --url https://api.suby.fi/api/customer \ --header 'X-Suby-Api-Key: <api-key>'
{ "success": true, "data": { "data": [ { "id": "<string>", "email": "jsmith@example.com", "name": "<string>", "totalPayments": 123, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } ], "pagination": { "page": 1, "limit": 25, "total": 42, "totalPages": 2 } } }
API key authentication
Page number (starts at 1)
x >= 1
Results per page (max 25)
1 <= x <= 25
Customers retrieved
true
Show child attributes