Shipment Tracking


This API allows you to query the tracking status of a shipment. Only certain channels are supported. Please contact your system administrator to confirm channel support.

Request URL

/shipment/track

Request Method

POST

Request Body Parameters

Parameter Name Example Type Required Description
trackingCode 1ZXXXXXX0391813701 String Yes Tracking number

Request Example

{
  "trackingCode": "1ZXXXXXX0391813701"
}

Response Example

{
  "code": 200,
  "data": {
    "trackingCode": "1ZXXXXXX0391813701",
    "trackingDetails": [
      {
        "timeStamp": "2022-08-31T17:02:00Z",
        "address": "",
        "city": "BROOKLYN",
        "state": "NY",
        "postalCode": "11221",
        "status": "Delivered",
        "eventCode": "",
        "statusInfo": "Delivered, In/At Mailbox"
      }
    ]
  },
  "message": ""
}