Path parameters

  • customer_id string Required

Responses

  • 200 application/json

    200 response

    Hide response attributes Show response attributes object
    • id integer
    • created_at string
    • email string
    • phone_number string
    • first_name string
    • last_name string
    • name string
    • address object
      Hide address attributes Show address attributes object
      • street_line_one string
      • street_line_two string
      • district string
      • postcode integer
      • city string
    • driving_licenses array[object]
GET /customers/{customer_id}
curl \
 --request GET 'https://api.fleetee.io/customers/{customer_id}' \
 --header "x-api-key: $API_KEY"
Response examples (200)
{
  "id": 42,
  "created_at": "string",
  "email": "string",
  "phone_number": "string",
  "first_name": "string",
  "last_name": "string",
  "name": "string",
  "address": {
    "street_line_one": "string",
    "street_line_two": "string",
    "district": "string",
    "postcode": 42,
    "city": "string"
  },
  "driving_licenses": [
    {}
  ]
}