Query parameters

  • limit integer

    Nombre maximum de résultat par page

  • page integer

    Numéro de page

  • vehicle_category integer

    Catégorie de véhicule

  • agency_id integer

    Agence

Responses

  • 200 application/json

    200 response

    Hide response attributes Show response attributes object
    • paginationNumber integer
    • paginationOffset integer
    • total integer
    • numberPage integer
    • list array[object]
      Hide list attributes Show list attributes object
      • id integer
      • name integer
      • default_amount number
      • type string

        Type tarification d'option

        Values are per_day or total.

      • code_option string
      • limit integer
      • picture_url string
      • agencies array[object]
        Hide agencies attributes Show agencies attributes object
        • id integer
        • name string
        • code string
GET /options
curl \
 --request GET 'https://api.fleetee.io/options' \
 --header "x-api-key: $API_KEY"
Response examples (200)
{
  "paginationNumber": 42,
  "paginationOffset": 42,
  "total": 42,
  "numberPage": 42,
  "list": [
    {
      "id": 42,
      "name": 42,
      "default_amount": 42.0,
      "type": "per_day",
      "code_option": "string",
      "limit": 42,
      "picture_url": "string",
      "agencies": [
        {
          "id": 42,
          "name": "string",
          "code": "string"
        }
      ]
    }
  ]
}