Blowhorn API Documentation
  • Welcome
  • API REFERENCE
    • Authentication
      • Customer Authentication
      • Partner Authentication
    • Orders
      • Shipment Orders
      • Marketplace Orders
      • Cancel Order
      • Order Event
      • Order Event History
      • ETA
      • Delivery Partner Details
      • Order Documents
    • Drivers
      • Available Vehicle Class
      • Driver Availability
      • Payday Loan Eligibility
      • Driver Details
      • Driver Balance
      • Driver Deductions
    • Locations
      • Serviceability
      • Hubs
      • Coverage
      • Location Type
      • Storage Type
      • Location Zone
      • Location
    • WMS Inbound
      • Clients
      • Suppliers
      • Purchase Orders
      • Advance Shipping Notice
      • Goods Receipt Note
    • WMS Outbound
      • Shipping Label
      • Shipping Manifest
    • Inventory
      • Product Group
      • Tracking Level
      • Pack Config
      • SKU
      • Inventory
      • Inventory Transaction
    • Webhooks
      • HMAC Authentication
      • Order Status
      • Trip Status
      • Inventory Status
  • Help
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. API REFERENCE
  2. Drivers

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

Name
Type
Description

API_KEY

string

Enter the API Key

{
  "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"
      }
    }
  ]
}
{
  "status": "string",
  "message": "string"
}
{
  "status": "string",
  "message": "string"
}
PreviousDriversNextDriver Availability

Last updated 2 years ago

Was this helpful?