Versions Compared

Key

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

Outbound | POST  | {Client’s URL}

...

Code Block
languagejson
{
   "orderCode":"po123",
   "orderType":"PO/STO/RO",
   "locationCode":"l123",
   "messageId":12345,
   "orderItems":[
      {
         "channelSkuCode":"100005734",
         "qcPassQuantity":500,
         "qcFailQuantity":2
      },
      {
         "channelSkuCode":"100005736",
         "qcPassQuantity":498,
         "qcFailQuantity":3
      }
   ]
}

Parameter Name

Data Type

Description

Mandatory

orderCode

String

Unique code used by the channel to identify the order

Yes

orderType

String

Possible value - STO (Stock Transfer Order), PO(Purchase Order), RO(Return Order)

Yes

locationCode

String

Code used by channels to identify a warehouse

Yes

messageId

Long

Unique Identifier of a notification

Yes

orderItems

Object[]

List of items GRNed

Yes

orderItems.channelSkuCode

String

SKU code of order item

Yes

qcPassQuantity

Integer

Qc pass quantity inwarded in order

Yes

qcFailQuantity

Integer

Qc fail quantity inwarded in order

Yes

Response

HttpStatus Code 200
Code Block
languagejson
{
    "hasError":false
}

...