/
Amazon Get Order

Amazon Get Order

The Below Table explains the description of each Block present in Sequence Diagram

Component 

Infra Description

FrontEnd(UI)

UI Component

amzprime-get-invoice-label

App Engine Service Name: amzprime-get-invoice-label
GCloud Project ID: amzprime_integration_staging (STAGING)
                                  amzprime_integration_prod (PROD)
Repository Name: esb-amzprime-get-invoice-label

Amazon Get Order SDK library Method

A library Method to retrieve Order Details

Step 1. The POST endpoint method "/v1/orders/orders" will receive request to retrieve complete details about a single order, given the order's id..

{ "connectionId": "5", "orderId": 123456789 }

Step 2. Extract the connectionId and orderId from the above received Request Body.

Step 3. 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 4. Make a call internally on Amazon Get Order Result SDK Method along with orderId and accessToken.

GetOrderRequest listOrdersRequest = new GetOrderRequest() .amzAccessToken(amzAccessToken).id(orderId); GetOrderResult result = amazonYojaka.getOrder(listOrdersRequest);

Step 5. If request is successful we will Order Details else will get an error response.

RESPONSE:

{ "order": { "creationTimestamp": "1620648980981", "id": "1042858d-ae9d-420e-b089-e704c9c6ce03", "lastUpdatedTimestamp": "1620650775386", "lineItems": [ { "charges": [ { "amount": { "currency": "INR", "value": 1500.0 }, "lineItemChargeType": "product", "name": "OurPrice Principal", "tax": { "amount": { "currency": "INR", "value": 240.0 }, "breakup": [ { "amount": { "currency": "INR", "value": 120.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": 120.0 }, "name": "CGST", "rate": 0.08 } ], "name": "OurPrice Tax", "rate": 0.16 }, "type": "product" }, { "amount": { "currency": "INR", "value": -375.0 }, "lineItemChargeType": "productPromotion", "name": "OurPrice Discount", "tax": { "amount": { "currency": "INR", "value": -60.0 }, "breakup": [ { "amount": { "currency": "INR", "value": -30.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": -30.0 }, "name": "CGST", "rate": 0.08 } ], "name": "OurPrice TaxSaving", "rate": 0.16 }, "type": "productPromotion" }, { "amount": { "currency": "INR", "value": 50.0 }, "lineItemChargeType": "giftWrap", "name": "Giftwrap Principal", "tax": { "amount": { "currency": "INR", "value": 8.0 }, "breakup": [ { "amount": { "currency": "INR", "value": 4.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": 4.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Giftwrap Tax", "rate": 0.16 }, "type": "giftWrap" }, { "amount": { "currency": "INR", "value": -25.0 }, "lineItemChargeType": "giftWrapPromotion", "name": "Giftwrap Discount", "tax": { "amount": { "currency": "INR", "value": -4.0 }, "breakup": [ { "amount": { "currency": "INR", "value": -2.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": -2.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Giftwrap TaxSaving", "rate": 0.16 }, "type": "giftWrapPromotion" } ], "giftAttributes": { "giftMessagePresent": false, "giftWrapRequired": false }, "id": "0", "marketplaceChannelAttributes": { "sku": "TestSku1" }, "merchantSku": "TestSku1", "numberOfUnits": 5, "serialNumberRequired": false }, { "charges": [ { "amount": { "currency": "INR", "value": 1000.0 }, "lineItemChargeType": "product", "name": "OurPrice Principal", "tax": { "amount": { "currency": "INR", "value": 160.0 }, "breakup": [ { "amount": { "currency": "INR", "value": 80.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": 80.0 }, "name": "CGST", "rate": 0.08 } ], "name": "OurPrice Tax", "rate": 0.16 }, "type": "product" }, { "amount": { "currency": "INR", "value": -250.0 }, "lineItemChargeType": "productPromotion", "name": "OurPrice Discount", "tax": { "amount": { "currency": "INR", "value": -40.0 }, "breakup": [ { "amount": { "currency": "INR", "value": -20.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": -20.0 }, "name": "CGST", "rate": 0.08 } ], "name": "OurPrice TaxSaving", "rate": 0.16 }, "type": "productPromotion" }, { "amount": { "currency": "INR", "value": 50.0 }, "lineItemChargeType": "giftWrap", "name": "Giftwrap Principal", "tax": { "amount": { "currency": "INR", "value": 8.0 }, "breakup": [ { "amount": { "currency": "INR", "value": 4.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": 4.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Giftwrap Tax", "rate": 0.16 }, "type": "giftWrap" }, { "amount": { "currency": "INR", "value": -25.0 }, "lineItemChargeType": "giftWrapPromotion", "name": "Giftwrap Discount", "tax": { "amount": { "currency": "INR", "value": -4.0 }, "breakup": [ { "amount": { "currency": "INR", "value": -2.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": -2.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Giftwrap TaxSaving", "rate": 0.16 }, "type": "giftWrapPromotion" } ], "giftAttributes": { "giftMessagePresent": false, "giftWrapRequired": false }, "id": "1", "marketplaceChannelAttributes": { "sku": "TestSku3" }, "merchantSku": "TestSku3", "numberOfUnits": 5, "serialNumberRequired": false } ], "locationId": "e5ede046-5f51-4e59-ade4-96e0e6bf613d", "marketplaceChannelDetails": { "customerOrderId": "hORk0uaqbf", "locationId": "Test-location-Eshop", "marketplaceChannel": { "channelName": "FBA", "marketplaceName": "AMAZON_IN" }, "merchantId": "AAFR4ZPY4GS0", "shipmentId": "OAfhTyKdaV" }, "metadata": { "adapterApp": { "id": "YojakaFbaAdapterService", "name": "YojakaFbaAdapterService" }, "charge": { "totalAmount": { "currency": "INR", "value": 2500.0 }, "totalTax": { "currency": "INR", "value": 400.0 } }, "invoiceInformation": { "creationTimestamp": "1620648980078", "id": "EqKYvmJzTc" }, "orderType": "NEW", "priority": false }, "orderCharges": [ { "amount": { "currency": "INR", "value": 100.0 }, "name": "Shipping Principal", "orderChargeType": "shipping", "tax": { "amount": { "currency": "INR", "value": 16.0 }, "breakup": [ { "amount": { "currency": "INR", "value": 8.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": 8.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Shipping Tax", "rate": 0.16 } }, { "amount": { "currency": "INR", "value": -50.0 }, "name": "Shipping Discount", "orderChargeType": "shippingPromotion", "tax": { "amount": { "currency": "INR", "value": -8.0 }, "breakup": [ { "amount": { "currency": "INR", "value": -4.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": -4.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Shipping TaxSaving", "rate": 0.16 } }, { "amount": { "currency": "INR", "value": 1975.0 }, "name": "Total", "orderChargeType": "total", "tax": { "amount": { "currency": "INR", "value": 316.0 }, "breakup": [ { "amount": { "currency": "INR", "value": 158.0 }, "name": "SGST", "rate": 0.08 }, { "amount": { "currency": "INR", "value": 158.0 }, "name": "CGST", "rate": 0.08 } ], "name": "Total", "rate": 0.16 } } ], "packages": [ { "height": { "dimensionUnit": "CM", "value": 1.0 }, "id": "4405473214658-846", "length": { "dimensionUnit": "CM", "value": 29.0 }, "packagedLineItems": [ { "lineItem": { "id": "0" }, "quantity": 5 }, { "lineItem": { "id": "1" }, "quantity": 5 } ], "weight": { "value": 34.0, "weightUnit": "kilograms" }, "width": { "dimensionUnit": "CM", "value": 1.0 } } ], "shippingInfo": { "expectedShippingTimestamp": "1621080980077", "recommendedPackages": [ { "dimensions": { "height": { "dimensionUnit": "CM", "value": 7.4900842621363 }, "length": { "dimensionUnit": "CM", "value": 7.114148794237962 }, "width": { "dimensionUnit": "CM", "value": 9.230183091462893 } }, "weight": { "value": 8.036228863303606, "weightUnit": "kg" } } ], "recommendedShipMethod": "", "shipToAddress": { "encryptionInfo": { "context": "shipToAddress", "type": "AWS_KMS" }, "value": "AYADeFnu+9YxYNIHm/9oxszwfiAAiAADABVhd3MtY3J5cHRvLXB1YmxpYy1rZXkAREF3UWdwdzh2dGI1aC8ybTR1Unhac0VQTWVJdUhmU0J1YUdVK2kyd3N6VWJoMWdXYXlTRy9JeEhoVC9ORlJiZVViUT09AAZjbGllbnQABnlvamFrYQAIZGF0YVR5cGUADXNoaXBUb0FkZHJlc3MAAQAHYXdzLWttcwBLYXJuOmF3czprbXM6ZXUtd2VzdC0xOjg1OTAwMTAwMzU5MjprZXkvNWU4MGMxZTAtZTZkMS00YjE5LTliNGQtZTcyNTA2NTAxZTE1ALgBAgEAeJRPZRi5hd7lvaXuQmvhxBNqueyu6MnkyqhvSLNyy/9QAUycxhkAp57r5KmcosKfydEAAAB+MHwGCSqGSIb3DQEHBqBvMG0CAQAwaAYJKoZIhvcNAQcBMB4GCWCGSAFlAwQBLjARBAwigtiFSTanI1wWgckCARCAOwd3WrJQ7vzVbGmxwkK2nT/ecuCFfpf3FkWx+tR1MlI9fwV6yDTcL2evPS1XApR8to73cqdjo+/Ilt3zAgAAAAAMAAAQAAAAAAAAAAAAAAAAAESADc878L18uO7yazuKctL/////AAAAAQAAAAAAAAAAAAAAAQAAABcNzf/y8euOnw9Z+F2CmW8NCWqi8tcQAaNcMHU19oZlj+ZC1YvtEhYAZzBlAjEA4+omuHSlkD9NFOQrgkC5IQhVTao7zKokIhLa4SgUid03SGAyOo8skEBiRelFdLBBAjB3Pw9UqAIgpRyU+cJC4tAoy9RUWaBkZbtBeqKykxl/IEGImSbbQn3lS+C9nK4fJMc=" }, "shippingType": "MARKETPLACE" }, "status": "SHIPPED" } }

But we might also get some error response code with error description.

Error Response:

{ "error": { "errors": [ { "domain": "global", "reason": "badRequest", "message": "{retryable=false, errorDescription=Requested operation is not permitted in the current order state. Check the order status and follow the order processing workflow., errorCode=SC_10001}" } ], "code": 400, "message": "{retryable=false, errorDescription=Requested operation is not permitted in the current order state. Check the order status and follow the order processing workflow., errorCode=SC_10001}" } }

 

Related content