Outbound | POST | {Client’s URL}
...
Code Block | ||
---|---|---|
| ||
{ "orderCode":"po123", "locationCode":"l123", "messageId":12345, "parentOrderCode": "pOrder123", "items":[ { "channelSkuCode":"100005734", "qcPassAbsoluteQuantity":500, "qcFailAbsoluteQuantity":2, "qcFailDeltaQuantity":1, "qcPassDeltaQuantity":1 }, { "channelSkuCode":"100005736", "qcPassAbsoluteQuantity":400, "qcFailAbsoluteQuantity":2, "qcFailDeltaQuantity":2, "qcPassDeltaQuantity":2 } ] } |
...
Parameter Name | Data Type | Description | Mandatory |
| String | Unique code used by the channel to identify the order | Yes |
| String | Code used by channels to identify a warehouse | Yes |
| Long | Unique Identifier of a notification ( for de-duplication ) | Yes |
| String | Parent order code | yes |
| Object[] | List of items GRNed | Yes |
| String | SKU code of order item | Yes |
| Integer | Total Qc pass quantity GRNed in order for the SKU | Yes |
| Integer | Total Qc fail quantity GRNed in order for the SKU | Yes |
| Integer | Qc pass quantity GRNed in order for the SKU since the last notification to ERP for the order. | Yes |
| Integer | Qc fail quantity GRNed in order for the SKU since the last notification to ERP for the order. | Yes |
Response
HttpStatus Code
200
Code Block | ||
---|---|---|
| ||
{ "hasError":false, "errorMessage":"message" } |
...