# Available Vehicle Class

## Available Vehicle Class

<mark style="color:blue;">`GET`</mark> `/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

| Name     | Type   | Description       |
| -------- | ------ | ----------------- |
| API\_KEY | string | Enter the API Key |

{% tabs %}
{% tab title="200 On successful updation of an order" %}

```json
{
  "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"
      }
    }
  ]
}
```

{% endtab %}

{% tab title="401 Unauthorized / Wrong api key" %}

```
{
  "status": "string",
  "message": "string"
}
```

{% endtab %}

{% tab title="500 Unexpected Error" %}

```
{
  "status": "string",
  "message": "string"
}
```

{% endtab %}
{% endtabs %}
