cURL
curl --request GET \ --url https://api.cartevo.co/api/v1/customers/{id} \ --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" } }
Retrieves the details of a single customer by their ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Detailed information for a single customer.
true
200
"Data retrieved successfully"
Show child attributes
"4d4dad81-7899-4612-a9f6-133ce56a4507"
"[email protected]"
"John"
"Doe"
"Cameroon"