Inbound | POSTÂ | /orders/inward
...
This API will create inward orders in Increff Omni. One payload will create only one order and one SKU can be present only once.
Request
Code Block | ||
---|---|---|
| ||
{ "parentOrderCode": "132", "orderTime": "2020-10-16T20:22:28.000+05:30", "orderType": "OPEN_PO", "orderCode": "sap123", "locationCode": "locationCode", "partnerCode": "partnerCode", "partnerLocationCode": "partnerLocationCode", "taxBreakupForms": [ { "channelSkuId": "sky1", "baseSellingPricePerUnit": 100.8, "taxItemForms": [ { "type": "VAT", "rate": 1.2, "taxPerUnit": 27.5 } ] } ], "orderItems": [ { "channelSkuCode": "tshirt134", "quantity": 500, "sellingPricePerUnit": 230.00, "orderItemCode": "item1" }, { "channelSkuCode": "jeans123", "quantity": 500, "sellingPricePerUnit": 230.00, "orderItemCode": "item2" } ] } |
...
Empty Body
HttpStatus Code
200
Steps to create Inward Order
...