Manifest Parcels
This request is used to manifest previously created parcel orders
Endpoint
| Method |
URI |
Headers |
| POST |
parcel-orders/manifest |
default |
Request
- Field | Required | Type | Description
- - | : | :- |
ids | Yes | Array | An array container for the manifested shipment_order_ids (can be obtained from ship method)
Request Example
{
"ids": [123412341234, 1234512345]
}
Response
- Field | Type | Description
- - | : |
success | Boolean | true or false
message | String | Message
data | Object | Data container
+manifest_url | String | This is url of the generated manifest
Response Examples
Successful
{
"success": true,
"data": {
"manifest_url": "https://example.com/manifest-file/url/..."
}
}