# 1) Discover valid trucktype + category values
curl https://api.qiktruck.co.za/v1/partner/vehicle-types \
-H "Authorization: Bearer qt_test_YOUR_KEY"
# 2) Create a quote (trucktype from vehicles[].type, category from that vehicle's categories[])
curl -X POST https://api.qiktruck.co.za/v1/partner/quotes \
-H "Authorization: Bearer qt_test_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"description": "Office desk delivery",
"trucktype": "1.5tonopen",
"category": "furniture",
"collection": { "lat": -26.11, "lng": 27.99 },
"delivery": { "lat": -25.75, "lng": 28.23 },
"collectiondate": "2026-07-01",
"collectiontime": "10:00",
"contact": {
"email": "customer@example.com",
"mobilenumber": "0821234567",
"firstname": "Sam",
"lastname": "Customer"
}
}'