Amazon Reject Order Flow (WMS to Amazon)
The Below Table explains the description of each Block present in Sequence Diagram
Component | Infra Description |
PubSub | Topic Name: wms_shipment_events |
amzprime-wms Service | App Engine Service Name: amzprime-wms-Service |
TaskQueue | Topic Name: “labelqueue“ Repository Name: esb-amzprime-order-service |
amazonRejectOrderSDKMethod | SDK Method to reject an order on Amazon |
Step1. The POST endpoint “shipment/event/listener
“ in App Engine Service “amzprime-wmsService“ will receive a shipment rejected event from PubSub Topic “wms_shipment_events“.
The Event received will be like:
{
"resource": "shipment",
"eventType": "PUT",
"eventSubType": "rejected",
"accountSlug": "winspiring",
"accountId": null,
"actor": "SYSTEM",
"version": "v1",
"request_data": [],
"response_data": {
"customerOrderNumber": "4408536793282",
"vendorOrderNumber": "3233276723394",
"externalShipmentID": "4408536793282-846-88",
"externalWarehouseID": "ESBMUM_112",
"externalChannelID": "CH0846",
"integrationType": "7",
"vendorPartyID": null,
"partner_as2_id": null,
"defaultWarehouseCode": "ESBMUM_112",
"orderDate": "2021-02-05 14:15:45",
"portal_id": 27,
"paymentType": "Cash on Delivery (COD)",
"expectedShipDate": null,
"dispatchAfterDate": null,
"externalManifestNumber": null,
"channelManifestNumber": null,
"order_id": 5364237,
"channel_id": 846,
"warehouse_id": 72,
"channel_account_id": 158,
"account_id": 149,
"connectionId": 5,
"locationId": "59469168834",
"region": "",
"picklistCode": null,
"invoiceNumber": "",
"boxType": "UNKNOWN",
"isPriorityShipment": "0",
"isGift": "0",
"invoice_url": "",
"invoiceDate": null,
"label_url": "",
"labels": "",
"shippingInfo": [],
"boxAdditionalRecommendation": [],
"dimension_length": "0",
"dimension_width": "0",
"dimension_height": "0",
"weight": "0",
"trackingID": "",
"packageID": "",
"barcode": "",
"taxAmount": 0,
"shipChargeAmount": 30,
"courierName": "",
"created_at": "2021-02-05 14:16:22",
"updated_at": "2021-02-05 14:16:22",
"status": "created",
"remarks": "",
"customerName": "Joe",
"customerContactNumber": "0123466666",
"email": "prateek.kaushik@eshopbox.com",
"channelSlug": "meraki",
"status_updated_at": "2021-02-05 14:16:22",
"status_log": {
"created": "2021-02-05 14:16:22"
},
"orderExternalCreatedAt": "2021-02-05 14:16:19",
"shippingAddress": {
"customerName": "Joe",
"addressLine1": "Pune",
"addressLine2": "Pune",
"city": "Pune",
"state": "Haryana",
"postalCode": "122001",
"countryCode": "IN",
"countryName": "INDIA",
"contactPhone": "0123466666",
"email": "prateek.kaushik@eshopbox.com"
},
"id": 5285104,
"isCOD": "1",
"track_payload": [],
"items": [
{
"lineItemSequenceNumber": 9141401714882,
"orderItemID": "4408536793282-13983598",
"itemID": "40125732585666",
"sku": "",
"asin": "",
"productName": "Y",
"quantity": 1,
"customerPrice": 200,
"lineItemTotal": 236,
"invoiceTotal": 251,
"discount": 0,
"taxRate": 0,
"taxAmount": 0,
"giftMessage": "",
"giftLabelContent": "",
"lineItemOrderStatus": "",
"orderItemIDs": [
"4408536793282-13983598"
],
"productImageUrl": "https:\/\/eshopbox21.myshopify.com\/53130756290\/checkouts\/b715894d69d9d401972859b4274dcfc0?no_cookies_from_redirect=1",
"productAdditionalInfo": {
"size": "32"
},
"expectedDeliveryDate": null,
"shippingCharges": 15,
"productUrl": "https:\/\/eshopbox21.myshopify.com\/53130756290\/checkouts\/b715894d69d9d401972859b4274dcfc0?no_cookies_from_redirect=1",
"originalOrderItemId": null
},
{
"lineItemSequenceNumber": 9141401714882,
"orderItemID": "4408536793282-13983599",
"itemID": "40125732585666",
"sku": "",
"asin": "",
"productName": "Y",
"quantity": 1,
"customerPrice": 200,
"lineItemTotal": 236,
"invoiceTotal": 251,
"discount": 0,
"taxRate": 0,
"taxAmount": 0,
"giftMessage": "",
"giftLabelContent": "",
"lineItemOrderStatus": "",
"orderItemIDs": [
"4408536793282-13983599"
],
"productImageUrl": "https:\/\/eshopbox21.myshopify.com\/53130756290\/checkouts\/b715894d69d9d401972859b4274dcfc0?no_cookies_from_redirect=1",
"productAdditionalInfo": {
"size": "32"
},
"expectedDeliveryDate": null,
"shippingCharges": 15,
"productUrl": "https:\/\/eshopbox21.myshopify.com\/53130756290\/checkouts\/b715894d69d9d401972859b4274dcfc0?no_cookies_from_redirect=1",
"originalOrderItemId": null
}
]
},
"previous_data": [],
"resource_type": "shipment.update",
"account_slug": "winspiring",
"custom": []
}
Step 2. Push the event received from PubSub into TaskQueue(labelqueue).
Step 3. The POST endpoint “listen/shipment/event
“ will receive the event from TaskQueue.
Step 4. Fetch order_id and connectionId from the event received.
Step 5. Find whether the Access Token is present in cache or not for the given connectionId.
Method name: getConnectionData
Cache Key: "amazonSmartConnectAccesstoken_"+connectionId
if it is present then move to next step but if not then get Access Token using Amazon SDK library method (getAccessToken) for which we need SellerId and Refresh Token hence find whether SellerId and Refresh Token in present in cache or not.
Method name: awsSmartConnectToken
Cache Key: "amazonConnectionData_"+connectionId
If both are present then get Access Token using library method but if not then extract both the parameters from DB using connectionId and then get the Access Token. Also set all the three parameters Access Token, SellerId and Refresh Token in cache against their respective keys.
Step 6. Prepare RejectOrderRequest using externalShipmentId, id, quantity, status, accessToken and orderId.
Amazon Reject Order Keys | WMS Reject Order Keys |
reference_id | response_data. |
rejectedLineItems[].lineItem.id | items[].lineItemSequenceNumber |
rejectedLineItems[].reason | “OUT_OF”STOCK” |
rejectedLineItems[].quantity | items[].quantity |
Request Body:
{
"reference_id":,
"rejectedLineItems":[
{
"lineItems":{
"id":{{items[].lineItemSequenceNumber}}
},
"reason":,
"quantity":{{items[].quantity}}
}
]
}
RejectOrderRequest SDK Method:
RejectOrderRequest rejectOrderRequest = new RejectOrderRequest()
.amzAccessToken(amzAccessToken).id(orderId)
.rejectOrderInput(rejectOrderInput);
Step 7. .Call the Amazon Reject Order SDK Method along with parameters(accessToken, orderId, RejectOrderRequest) only if lineItemOrderStatus
= “failure”.
RejectOrderResult rejectOrderResult = amazonYojaka.rejectOrder(rejectOrderRequest);
Step 8.If Request is Successful we will get a response of "204 Success" from Amazon.
{
"Success":204
}