...
...
Outbound | POST | {Client’s URL}
Summary
This API will call the channel with GRN details.
Description
This API will call the channel with GRN information against an inward order.This API call will be triggered only after the inward order against a PO is closed.
Request
Code Block | ||
---|---|---|
| ||
{ "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 |
| String | Unique code used by the channel to identify the order | Yes |
| String | Possible value - STO (Stock Transfer Order), PO(Purchase Order), RO(Return Order) | Yes |
| String | Code used by channels to identify a warehouse | Yes |
| Long | Unique Identifier of a notification | Yes |
| Object[] | List of items GRNed | Yes |
| String | SKU code of order item | Yes |
| Integer | Qc pass quantity inwarded in order | Yes |
| Integer | Qc fail quantity inwarded in order | Yes |
Response
HttpStatus Code 200
Code Block | ||
---|---|---|
| ||
{ "hasError":false } |
...