Vehicle Categories

The Vehicle Categories we provide on truQ Services

Vehicle categories make up the categories you have set up for your organisation. When a vehicle is added to your fleet, it is tied to a vehicle category. When customers and businesses book trips, they select a vehicle category size to make up that trip-booking process.

Request
https://dodge-apis-c2btvqbhlq-uc.a.run.app/booking-service/booking/booking-organisation-profile/get_booking_category_sizes/?trip_type=INTRASTATE
-H "Authorization: Bearer YOUR_PUBLIC_KEY" 
-H "Organisation: TRU_HOD4" 
-X GET
Response
{
    "status": "SUCCESS",
    "message": "Successfully fetched booking category sizes",
    "data": [
        {
            "id": "8ebe0127-5081-48d8-8791-xxxxxxxxxxxx",
            "category": "TINY",
            "tonnage": "0.2",
            "description": "tiny moves",
            "image": "https://storage.googleapis.com/dodge-storage/vehicleCategories/minivan.svg",
        },
        {
            "id": "11dd613b-e582-4427-a200-xxxxxxxxxxxx",
            "category": "1-TONNE",
            "tonnage": "1.0",
            "description": "1 tonne",
            "image": "https://storage.googleapis.com/dodge-storage/vehicleCategories/medium-van.svg",
        },
        {
            "id": "26f81fdb-d311-464e-814f-c084838c1df8",
            "category": "2-TONNE",
            "tonnage": "2.0",
            "description": "2 tonne",
            "image": null
        }
    ]
}

Last updated