Add Items to Existing Return Orders API (Beta)
Inbound | PUT | /return/update-return-order/item
Summary
This API can be used to add order line items in an existing return order created in Increff system.
Description
This API can be used to add the additional line items in an existing Return order which exists in Increff Omni system.
Return order item can be added before the return shipment gets received in the warehouse from transporter partner.
Request
{
"locationCode": "Wid234",
"orderCode": "100",
"returnLineItems": [
{
"channelReturnItemCode": "I10098",
"channelSkuCode": "10007345",
"price": 100.00,
"reasonForReturn": "Different Size",
"subOrderCode": "1"
}
],
"returnOrderCode": "100078"
}
Field Name | Data Type | Description | Is Mandatory |
---|---|---|---|
| String | Forward order code corresponding to which this return order belongs | Yes |
| String | Unique identifier provided by the channel for the existing return order for which item is being added. | Yes |
| String | Location code of the warehouse where the return order will be received. | Yes |
| String | Unique identifier provided by the channel for the return order item. | Yes |
| String | SKU code for return order item. | Yes |
| String | unique identifier for each suborder after the split | No |
| String | Reason for return as given by the customer. | No |
| Double | Price of the product | No |
Response
EmptyÂ
Â
HTTP status
200
Â