Axlehire Submit Shipment Example is an example object payload from AxleHire (Jitsu), with 9 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
{
"operationId": "create",
"summary": "Submit Shipment",
"method": "POST",
"path": "/v3/shipments",
"request": {
"customer": {
"name": "John Doe",
"email": "john.d@example.com",
"phone_number": "123-456-7890"
},
"internal_id": "12334",
"delivery_items": "One egg, two carrots, three tacos",
"pickup_address": {
"street": "1937 Davis Street",
"street2": "Suite A",
"city": "San Leandro",
"state": "CA",
"zipcode": "94577"
},
"pickup_earliest_ts": "2018-10-13T15:36:50.052Z",
"pickup_latest_ts": "2018-10-13T16:23:50.052Z",
"pickup_note": "Parking lot #3",
"dropoff_address": {
"street": "2250 Shattuck Avenue",
"street2": "Penthouse",
"city": "Berkeley",
"state": "CA",
"zipcode": "94704"
},
"dropoff_earliest_ts": "2018-10-14T16:00:00.052Z",
"dropoff_latest_ts": "2018-10-14T17:23:50.052Z",
"dropoff_note": "Please leave at the door, do not ring the bell!",
"delivery_proof_photo_required": true,
"signature_required": true,
"sms_enabled": true,
"id_required": true,
"rdi": "COMMERCIAL",
"service_level": "NEXT_DAY",
"tags": [
"meal kit",
"vip",
"fragile",
"perishable"
],
"parcels": [
{
"parcel_id": "your optional parcel id",
"dimensions": {
"height": 10,
"length": 25,
"unit": "in",
"width": 15
},
"weight": {
"unit": "lb",
"value": 1
}
}
],
"tracking_code": "JITSU_UNIQUE_CODE_123 (highly recommended to skip this field, we will auto-generate)",
"code": "LS01",
"extra": {
"containerId": "container123",
"additionalReferenceField": "More Additional Info"
}
},
"response": {
"status": "default",
"body": {
"id": 1223444,
"tracking_code": "abc1234"
}
},
"x-source": "openapi/axlehire-jitsu-rest-api.yml (in-spec example, verbatim)",
"x-generated": "2026-08-06",
"x-method": "derived"
}