Outbound | GET | {Client’s URL}
Summary
This API will fetch shipping information.
Description
This API will fetch the shipping label along with all the shipping details.
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
{ "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