Manifest


Request URL:

  1. /shipment/manifest

This interface supports requesting a Manifest when shipping from certain carriers (e.g., DHL), and requires the tracking code to be processed through the corresponding channel.

Request Method

POST

Request Body Parameters

Parameter NameExampleTypeRequiredDescription
trackingCodesStringYesArray of tracking numbers. Supports one or multiple entries. Each tracking number can only be used in one Manifest.

Request Example

{
    "trackingCodes": [
      "9235900000000000000000"
    ]
  }

Response Example

{
    "code": 200,
    "data": {
      "manifestId": "9230000000000000000000",
      "manifestFileData": "..." // base64 PDF data
    },
    "message": ""
  }