Submit Truck Inspection Data
Records truck inspection data including temperature, cleanliness, and vehicle identification during batch delivery.
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Body Params application/jsonRequired
{
"vehicle_id": "VH-1234",
"truck_temp": 4.5,
"truck_cleanliness": true
}
Responses
application/json
Truck inspection recorded successfully
{
"success": true,
"data": {
"batch_id": "BTH-2025-0012",
"truck_inspection": {
"vehicle_id": "VH-1234",
"truck_temp": 4.5,
"truck_cleanliness": true,
"temp_status": "passed",
"threshold": 10,
"warning_threshold": 8,
"recorded_at": "2025-12-24T10:30:00Z"
},
"batch_status": {
"value": "passed",
"label": "Pending"
}
}
}
Modified at 2025-12-24 10:09:40