Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. This API can be used by an ERP to update Order line items for a certain Inward order created in CIMS.

  2. The new Inward Order Line Items replace the existing Inward Order Line Items after some validations. 

  3. Update for any Inward Order is allowed till the Inward Order is moved to Locked

    Status
    colourBlue
    titleLOCKED
    State.

  4. 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

  5. Once an order is

    Status
    colourBlue
    titleLOCKED
    , it can not be updated.

Request

Path Parameter

Parameter Name

Data Type

Description

Mandatory

orderCode

String

Code to uniquely identify of the order in consideration

yes

...

Code Block
languagejson
{
  "locationCode": "locationCode1",
  "orderItems": [
    {
      "orderItemCode": null123354353,
      "channelSkuCode": "tshirt134",
      "orderedQuantity": 500,
      "costPrice": 230
    },
    {
      "orderItemCode": null32423544,
      "channelSkuCode": "jeans123",
      "orderedQuantity": 500,
      "costPrice": 230
    }
  ],
"taxBreakUpForms": null
}

...