Path parameters

  • agency_id string Required

Responses

  • 200 application/json

    200 response

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • code string
    • address object
      Hide address attributes Show address attributes object
      • street_line_one string
      • street_line_two string
      • district string
      • postcode integer
      • city string
GET /agencies/{agency_id}
curl \
 --request GET 'https://api.fleetee.io/agencies/{agency_id}' \
 --header "x-api-key: $API_KEY"
Response examples (200)
{
  "id": 42,
  "name": "string",
  "code": "string",
  "address": {
    "street_line_one": "string",
    "street_line_two": "string",
    "district": "string",
    "postcode": 42,
    "city": "string"
  }
}