Available Vehicle Class

Available Vehicle Class

GET /vehicle/getvehicleclass

Use this api to get the list of vehicle classes available for a particular customer providing the api key of the customer requesting to see it. Note: It is only applicable for FTLs(Full Truck Loads) and not for shipments.

Headers

{
  "value": [
    {
      "commercial_class": "Cargo Van XL",
      "licence_category": "Light Commercial Vehicle",
      "vehicle_attributes": {
        "length": "12ft 0.6in",
        "capacity": "600 kg",
        "breadth": "4ft 10in",
        "height": "5ft 10in"
      }
    },
    {
      "commercial_class": "Three Wheeler",
      "licence_category": "Light Motor Vehicle",
      "vehicle_attributes": {
        "length": "6ft 3in",
        "capacity": "665kg",
        "breadth": "4ft 9in",
        "height": "11in"
      }
    }
  ]
}

Last updated