Shipments

Get a shipment

Retrieves the details of an existing shipment. You need only supply the unique shipment id that was returned upon tracking_request creation.

get/shipments/{id}

Query parameters

includestring

Comma delimited list of relations to include

flag[parties]boolean

Set to true to add the party_roles relationship to each shipment. Add include=party_roles.party to embed the roles and their parties.

Response

OK

Example response

{
  "included": [
    {
      "attributes": {
        "fees_at_pod_terminal": [
          {
            "currency_code": "USD"
          }
        ]
      }
    }
  ]
}

Changes