Skip to main content
GET
/
customers
/
{id}
Customer details
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Response

Detailed information for a single customer.

success
boolean
Example:

true

statusCode
integer
Example:

200

message
string
Example:

"Data retrieved successfully"

data
object