Create Manifest
Developing
For single creation of a manifest, pass the orderId.
For batch creation of manifests, pass the orderIds.
Note: When passing orderIds, it must be in an array format, e.g., [ORDER_ID_1, ORDER_ID_2].
exactly one of the two parameters must be passed.
Request
Body Params application/json
{
"accessToken": "string",
"orderId": "68c76fa9d6a2c317b7798c50"
}
Request Code Samples
curl --location --request POST 'https://api.batchship.com/api/v3/shipment/dhl/manifest/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"accessToken": "string",
"orderId": "68c76fa9d6a2c317b7798c50"
}'
Responses
application/json {
"success": true,
"payload": {
"link": "link",
"orderId": "ORDER_ID",
"shipmentId": "6101010900349455",
"serviceCode": "dhl_1.0",
"mode": "production",
"pickupNumber": "5403049"
}
}
Modified at 2026-02-28 08:24:24