...
This API can be used by an ERP to update Order line items for a certain Inward order created in CIMS.
The new Inward Order Line Items replace the existing Inward Order Line Items after some validations.
Update for any Inward Order is allowed till the Inward Order is moved to Locked
State.Status colour Blue title LOCKED To move an Inward Order to Locked state, external system ERP can use https://increff.atlassian.net/wiki/spaces/IOSA/pages/504791492/Lock+Inward+Order+API+New+API+Beta#Inbound-%7CPUT%7C%2Forders%2Finward%2F%7BorderCode%7D%2F%7BlocationCode%7D
Once an order is
, it can not be updated.Status colour Blue title LOCKED
Request
Path Parameter
Parameter Name | Data Type | Description | Mandatory |
| String | Code to uniquely identify of the order in consideration | yes |
...
Code Block | ||
---|---|---|
| ||
{ "locationCode": "locationCode1", "orderItems": [ { "orderItemCode": null123354353, "channelSkuCode": "tshirt134", "orderedQuantity": 500, "costPrice": 230 }, { "orderItemCode": null32423544, "channelSkuCode": "jeans123", "orderedQuantity": 500, "costPrice": 230 } ], "taxBreakUpForms": null } |
...