cURL
curl --request GET \ --url https://api.cartevo.co/api/v1/customers \ --header 'Authorization: Bearer <token>'
{ "success": true, "statusCode": 200, "message": "Data retrieved successfully", "data": [ { "id": "4d4dad81-7899-4612-a9f6-133ce56a4507", "email": "[email protected]", "first_name": "John", "last_name": "Doe", "is_active": true, "country": "Cameroon", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "pagination": { "page": 1, "limit": 20, "total": 15, "totalPages": 1 } }
Retrieves a list of all customers for the company.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1
20
A list of customers.
true
200
"Data retrieved successfully"
Show child attributes
"4d4dad81-7899-4612-a9f6-133ce56a4507"
"[email protected]"
"John"
"Doe"
"Cameroon"
15