Dispatch Shipment

Shipment Dispatched(shipped)

POST https://wms.eshopbox.com/api//unicommerce/orders/dispatch

This endpoint allows you to mark the shipment status dispatch.

Headers

Request Body

{
    "status": "SUCCESS",
    "orderItems": [
        {
            "orderItemID": "408-3131237-0000110-67"
        },
        {
            "orderItemID": "408-3131237-0000110-68"
        }
    ]
}

The orderItems array[object]

The selfShipping object

curl --location --request POST 'https://wms.eshopbox.com/api//unicommerce/orders/dispatch' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer ACCESS_TOKEN' \
--data-raw '{
  "orderItems": [
    
    {
      "orderItemId": "408-3131237-0000110-67",
      "quantity": 1,
      "centralGstPercentage": 0,
      "compensationCessPercentage": 0,
      "integratedGstPercentage": 0,
      "stateGstPercentage": 0,
      "taxRate": 0,
      "unionTerritoryGstPercentage": 0
    },{
      "orderItemId": "408-3131237-0000110-68",
      "quantity": 1,
      "centralGstPercentage": 0,
      "compensationCessPercentage": 0,
      "integratedGstPercentage": 0,
      "stateGstPercentage": 0,
      "taxRate": 0,
      "unionTerritoryGstPercentage": 0
    }
  ],
  "selfShipping": {
    "deliveryPartner": "ecomExpress",
    "dispatchDate": "2017-01-02T08:12:53",
    "invoiceDate": "2017-01-02T08:12:53",
    "invoiceNumber": "string",
    "tentativeDeliveryDate": "2017-01-02T08:12:53",
    "trackingId": "123455"
  }
}'

Last updated