Inbound | POSTÂ | /usp/order/pack
...
Parameter Name | Data Type | Description | Mandatory |
| String | Unique code used by the channel to identify the order. | yes |
| String | Code used by channels to identify a warehouse | Yes |
channelName | String | Code used to identify a channel | Yes |
| String | SKU of the package material used for packing | no |
| Double | Weight of the package in grams | no |
| String | Enum with possible values: | no |
| Object | Dimensions of the packed shipment | no |
| Double | length of shipment box | no |
| Double | breadth of shipment box | no |
| Double | height of shipment box | no |
| Object[] | List of items corresponding to shipment | yes |
| String | SKU code of order item | yes |
| Integer | Quantity of SKU in shipment | yes |
| String[] | These are the external serial ids for the item | no |
...
Code Block |
---|
{ "orderCode":"H19304030001", "locationCode":"l123", "channelId":"l123", "shipmentCode":"l123", "shipmentId":"l123", "shippingLabel":{ "transporter": "INV123", "awbawbNumber": "INV123", "shippingLabelUrl": "https://mybrand.com/shipping-Label123.pdf", "shippingLabel": "invoiceBase64String", } "invoice": [ "invoiceUrl": "https://mybrand.com/shipping-Label123.pdf", "invoice": "invoiceBase64String", "invoiceCode": "INV-1", "invoiceDate": "2020-10-16T20:22:28.000+05:30", "invoiceDetails": [ { "channelSkuCode": "100000789702", "clientSkuId": "100000789702", "netTaxAmountPerUnit": 60, "netTaxAmountTotal": 120, "baseSellingPricePerUnit": 500, "baseSellingPriceTotal": 1000, "actualSellingPricePerUnit": 560, "actualSellingPriceTotal": 1120, "quantity": 2, "taxItems": [ { "type": "SGST", "rate": 6, "taxPerUnit": 30, "taxTotal": 60 }, { "type": "CGST", "rate": 6, "taxPerUnit": 30, "taxTotal": 60 } ] } ] ] } } |
...