Amazon Confirm Order Flow
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-wms-service |
amazonConfirmOrderSDKMethod | SDK Method for Amazon Yojaka that the client has confirmed the order for fulfilment processing. |
createPackageAmazonSDKMethod | SDK Method for creating Packages in Amazon |
retrieveShippingOptionsSdkMethod | SDK Methods to retrieve shipping options that marketplace/channel provides for the packages of an order. |
Step 1.The POST endpoint “shipment/event/listener
“ in App Engine Service “amzprime-wmsService“ will listen the shipment accepted event from PubSub Topic "wms_shipment_events" from WMS.
Event:
{
"resource": "shipment",
"eventType": "PUT",
"eventSubType": "accepted",
"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.
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. 7.Call the Amazon Confirm Order SDK Method and pass the ConfirmOrderRequest
ConfirmOrderRequest confirmOrderRequest = new ConfirmOrderRequest().amzAccessToken(amzAccessToken)
.id(orderId);
ConfirmOrderResult confirmOrderResult = amazonYojaka.confirmOrder(confirmOrderRequest);
Step 7. If Request is Successful we will get a response of "204 Success" from Amazon else we will get an error response.
Step 8. Prepare the Request Body for Amazon Create Packages SDK Method.
Request Body for Amazon Create Package:
{
"packages": [
{
"id": "4405473214658-846",
"length": {
"value": {{response_data.dimension_length}},
"dimensionUnit": "CM"
},
"width": {
"value": {{response_data.dimension_width}},
"dimensionUnit": "CM"
},
"height": {
"value": {{response_data.dimension_heigh}},
"dimensionUnit": "CM"
},
"weight": {
"value": {{response_data.weight}},
"weightUnit": "grams"
},
"hazmatLabels": [],
"packagedLineItems": [
{
"lineItem": {
"id": {{response_data.lineItems[].lineItemSequenceNumber}}
},
"quantity": {{response_data.lineItems[].quantity}}
}
]
}
Step 9. Pass accessToken, orderId and packages details in Amazon Create Package SDK Method.
CreatePackagesResult createpackagesResult = amazonYojaka.createPackages
(new CreatePackagesRequest().id(orderId)
.amzAccessToken(amzAccessToken
.createPackagesInput(createPackages));
Step 10. If the request is successful we will get Response:
{
"Success":204
}
Step 11 If create package SDK method returns a success response then make a call to Amazon Retrieve Shipping Options SDK Method to retrieve an optional list of shipping-options that marketplace/channel provides for the packages of an order.
RetrieveShippingOptionsRequest shippingOptionsRequest = new RetrieveShippingOptionsRequest()
.amzAccessToken(amzAccessToken).id(orderId);
RetrieveShippingOptionsResult shippingOptionsResult = amazonYojaka
.retrieveShippingOptions(shippingOptionsRequest);
Step 12. We will get a list of shipping-options if the marketplace/channel provides transportation in response.