AxleHire (Jitsu) · Example Payload

Axlehire Retrieve Shipment Example

CompanyLogisticsLast Mile DeliveryShippingParcelTransportationSupply ChainEcommerceTrackingWebhooks

Axlehire Retrieve Shipment Example is an example object payload from AxleHire (Jitsu), with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdsummarymethodpathresponsex-sourcex-generatedx-method

Example Payload

Raw ↑
{
  "operationId": "retrieve_1",
  "summary": "Retrieve Shipment",
  "method": "GET",
  "path": "/v3/shipments/{shipment_id}",
  "response": {
    "status": "default",
    "body": {
      "id": 123456,
      "internal_id": "123",
      "workload": 0,
      "customer": {
        "name": "John Doe",
        "phone_number": "123-456-7890",
        "email": "john.d@example.com"
      },
      "status": "CREATED",
      "pickup_address": {
        "street2": "Suite A",
        "street": "1937 Davis Street",
        "city": "San Leandro",
        "state": "CA",
        "zipcode": "94577",
        "lat": 0,
        "lng": 0
      },
      "pickup_earliest_ts": "2018-10-13T15:36:50.052Z",
      "pickup_latest_ts": "2018-10-13T16:23:50.052Z",
      "pickup_note": "Parking lot #3",
      "pickup_buffer": 300,
      "dropoff_address": {
        "street2": "Suite A",
        "street": "1937 Davis Street",
        "city": "Berkeley",
        "state": "CA",
        "zipcode": "94577",
        "lat": 0,
        "lng": 0
      },
      "dropoff_earliest_ts": "2018-10-13T17:36:50.052Z",
      "dropoff_latest_ts": "2018-10-14T17:23:50.052Z",
      "dropoff_note": "Please leave at the door, do not ring the bell!",
      "dropoff_buffer": 360,
      "delivery_proof_photo_required": false,
      "signature_required": true,
      "sms_enabled": true,
      "assignment_id": 12345,
      "is_cancelled": false,
      "tracking_code": "JITSU_UNIQUE_CODE_123 (auto-generated most of the time)",
      "tracking_url": "https://someJitsuTrackingURL/xyz789",
      "rdi": "COMMERCIAL",
      "remark": {
        "pickup": "pickup remark left by driver/dispatcher if any",
        "dropoff": "dropoff remark left by driver/dispatcher if any",
        "return": "return remark left by driver/dispatcher if any"
      },
      "parcels": [
        {
          "id": 123,
          "parcel_id": "client_parcel_id",
          "dimensions": {
            "unit": "in",
            "height": 10,
            "width": 15,
            "length": 25
          },
          "weight": {
            "value": 1,
            "unit": "lb"
          }
        }
      ]
    }
  },
  "x-source": "openapi/axlehire-jitsu-rest-api.yml (in-spec example, verbatim)",
  "x-generated": "2026-08-06",
  "x-method": "derived"
}