Question

Ship to name is not adding while creating shipment using Rest Api with below api url:

http://127.0.0.1/magento225/rest/V1/shipment/

Body:

{
 "entity":{
   "orderId":9,
   "store_id":1,
  "items":[{"orderItemId":15,"qty":1}]
  }
}

please find the below screenshot:

enter image description here

Was it helpful?

Solution

I got the answer myself:

Its working fine with below Api:

http://127.0.0.1/magento225/rest/V1/order/order_id/ship

Body:

{
 "entity":{
   "store_id":1,
  "items":[{"orderItemId":19,"qty":1}]
  },
  "tracks": [
    {
      "track_number": "1Y-9876543210",
      "title": "Custom",
      "carrier_code": "SomeCarrierCode"
    }
  ]
}
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top