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

Field Name

Data Type

Description

Is Mandatory

orderCode

String

Forward order code corresponding to which this return order belongs

Yes

returnOrderCode

String

Unique identifier provided by the channel for the existing return order for which item is being added.

Yes

locationCode

String

Location code of the warehouse where the return order will be received.

Yes

returnLineItems.channelReturnItemCode

String

Unique identifier provided by the channel for the return order item.

Yes

returnLineItems.channelSkuCode

String

SKU code for return order item.

Yes

returnLineItems.subOrderCode

String

unique identifier for each suborder after the split

No

returnLineItems.reasonForReturn

String

Reason for return as given by the customer.

No

returnLineItems.price

Double

Price of the product

No

Response

Empty 

 

HTTP status

200

Â