Outbound | GET | {Client’s URL}
Summary
This API will be used to fetch shipping label information .from Shopfront platform
Description
This API will fetch the shipping label along with all the shipping details from the Shopfront platform for the customer orders which are being processed in warehouse/store.
Request Params
shipmentCode
orderCode
Parameter Name | Data Type | Description | Mandatory |
| String | Unique code used by the channel to identify the shipment | Yes |
| String | Unique code used by the channel to identify the order | Yes |
Response
Code Block | ||
---|---|---|
| ||
{ "shippingLabelUrl": "https://mybrand.com/transporter.pdf", "awbNumber": "awb456fd5435", "shippingLabel": "base64shippinglabelstring", "transporter": "transporter" } |
...
Note: Any one of shippingLabelUrl
and shippingLabel
should be present
Parameter Name | Data Type | Description | Mandatory |
| String | Downloadable pdf url of the shipping label document(either of shippingLabel and shippingLabelUrl is mandatory) | No |
| String | Tracking number provided by the courier partner | Yes |
| String | Base64 encoded string of the shipping label(either of shippingLabel and shippingLabelUrl is mandatory) | No |
| String | Courier partner name | Yes |
HttpStatus : 200