0

I've a requirement where in, I need to get all the transfer orders, that has been associated with the sales order.

Is there any api / attribute in getOrderDetails API that has transfer order number or TransferOrderHeaderKey ?

In the input, I've both sales order number and orderHeaderKey.

2 Answers2

1

You should be able to use getOrderList call with a combination of documentType for Transfer Order and Derived_from_chained_order_header_key

GabOny
  • 11
  • 1
0

Using below input you would be able to get all the transfer orders by invoking getOrderList api

<Order DocumentType="0006">

<OrderLine ChainedFromOrderHeaderKey="<SalesOrderHeaderKey>"/>

</Order>