/
Order Sync : Woocommerce

Order Sync : Woocommerce

 


When you turn this automation on, Eshopbox will automatically import and fulfill all orders that are not completed. User can select the start date to avoid orders which are already fulfilled outside of Eshopbox / before integrating with Eshopbox

image-20240531-092244.png

Orders setting will be save in otherDetails column in ie_app_automation_steps_config table against the WooCommerce order stepId.

image-20240531-094005.png


Step 1 : We will listen to Webhook order event on /webhooklistener/woo/orders/{connectionId}

Order Event Listener : /webhooklistener/woo/orders/{connectionId}

Event Received from Webhook :

{ "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } }

Step 2: Upon receiving the event, will extract the connectionId from the URL. Using this connectionId, it will retrieve the corresponding channel data and credentials (consumer_key and consumer_secret) from the cache.

The WooCommerce API credentials (consumer_key and consumer_secret) will be obtained from the cache using the key inputFields_{connectionId}.

inputFields_{connectionId} : { "store_name" : "mayurKarwa123", "consumer_key" : "7r6t9843r30ytuye", "consumer_secret" : "5ehgcvndbcvxjhdge" }

 

Additionally, the channel data associated with the connection will be fetched from the cache using the key channeldata_{connectionId}.

channeldata_{connectionId} : { "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" } }



If Channel Data does not exist in Cache will get it from below query and set it in the cache

SELECT channels.connectionId,channels.externalChannelId ,external_wms_channels.locationId, warehouses.externalWarehouseId,accounts.account_slug,channels.integration_model_id , channels.integrationType AS integrationType FROM channels LEFT JOIN external_wms_channels ON channels.id= external_wms_channels.channel_id LEFT JOIN warehouses ON warehouses.id = external_wms_channels.warehouse_id LEFT JOIN accounts ON channels.account_id = accounts.id WHERE channels.connectionId IN (:connectionId)


Step 4 :Now, we will prepare an object as shown below from the data received by executing the above query and send it further in the TaskQueue

{ "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" }, "inputFields": "{\"store_name\":\"mayurkarwa123.wpcomstaging.com\",\"consumer_key\":\"ck_8ce680aa9f62e9e8cc3b8a3e5726e88b6330971c\",\"consumer_secret\":\"cs_4c0e11113b90ee98df2657821bcbd02fc4f64991\"}", "appIsActive": "active", "otherDetails": "Setting saved for create order", "appId": 658, "isActive": "1", "orderDetails" : [ { "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } } ]

 

Takqueue endpoint : woo/listen/createOrders/{connectionId}

Step 5 : In the task queue, we will listen to the event and checks if order exists in the database. If the order exists, update the order. If the order does not exist, create a new order. In both scenarios, an order event is sent to Pub/Sub. Additionally, the eventSubtype is added to categorize whether the operation is to update an existing order or create a new order.

 

Step 6 :We will create a list of customerorderNumber but in case of webhook will get single order and in case of cron-based event we can get the list of all orders recieved.

1 .Query to check do orders already exist in DB :

SELECT * FROM orders WHERE customerOrderNumber IN (:orderList)

Will divide the orders in two list , Orders which already exist in database and orders which needs to be created.

Step 7 : For the order list which exist in database, check the status of orders and fetch all details from from below query ,

SELECT shipment_status_logs.*, order_items.lineItemSequenceNumber, order_items.itemID, order_items.quantity, order_items.orderItemID, order_items.remark, orders.channel_id, orders.shipping_customerName, orders.shipping_addressLine1, orders.shipping_addressLine2, orders.shipping_city, orders.shipping_state, orders.shipping_postalCode, orders.shipping_countryCode, orders.shipping_countryName, orders.shipping_contactPhone, orders.shipping_alternateContactPhone, orders.shipping_email FROM shipment_status_logs LEFT JOIN order_items ON order_items.shipment_id = shipment_status_logs.shipment_id LEFT JOIN orders ON orders.id = order_items.order_id LEFT JOIN channels ON channels.id = orders.channel_id WHERE orders.customerOrderNumber IN ('5658791215359') AND channels.connectionId = 4132 ORDER BY shipment_status_logs.created_at DESC;

We will retrieve the status of all orders and then check the state of each order one by one. Orders in any state except "packed" will be updated.

We will fetch all the details from the above query and set them in a DTO to compare it with WooCommerce Response in the middlelayer.


Step 8 :

{ "eventSubType" : "update" "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" }, "inputFields": "{\"store_name\":\"mayurkarwa123.wpcomstaging.com\",\"consumer_key\":\"ck_8ce680aa9f62e9e8cc3b8a3e5726e88b6330971c\",\"consumer_secret\":\"cs_4c0e11113b90ee98df2657821bcbd02fc4f64991\"}", "appIsActive": "active", "otherDetails": "Setting saved for create order", "appId": 658, "isActive": "1", "orderDetails" : [ { "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } } ]

Step 9 : We will iterate through the orders that need to be created in Eshopbox. If an order does not exist in the database will create it in eshopbox.

a. First, we will check if the order meets the criteria for creation in Eshopbox under the "unhold" condition based on the filters applied when enabling the order sync toggle. If the criteria are not met, the order will be created in the "on hold" condition.

b. For the payment method filter, if the method is COD, we will verify if the order satisfies this condition. If it does, the order will be pushed to Pub/Sub with the "on hold" status set to 0. If it does not meet the COD condition, the "on hold" status will be set to 1.

{ "eventSubType" : "create", "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" }, "inputFields": "{\"store_name\":\"mayurkarwa123.wpcomstaging.com\",\"consumer_key\":\"ck_8ce680aa9f62e9e8cc3b8a3e5726e88b6330971c\",\"consumer_secret\":\"cs_4c0e11113b90ee98df2657821bcbd02fc4f64991\"}", "appIsActive": "active", "otherDetails": "Setting saved for create order", "appId": 658, "isActive": "1", "orderDetails" : [ { "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } } ]

 

MiddleLayer Listener: /listener/createwoo/order

It will listen to event published on pubsub and on the basis of eventSubType will decide whether the event pulled will follow create order flow or update order flow



Create Order Flow :

Eshopbox workspace field name

Eshopbox API key

Woocommerce API key

Eshopbox workspace field name

Eshopbox API key

Woocommerce API key

 

externalChannelID

--

Channel Order ID

customerOrderNumber

id

Customer Order ID

vendorOrderNumber

number

Shipping mode rules can be configured based on this method

shipMethod

shipping_lines.method_title

Order Date

orderDate

date_created

 

expectedShipDate

-

 

promiseDeliveryDate

-

Payment method

isCOD

payment_method_title mapping - if it is COD or prepaid as saved in app settings

-

paymentType

payment_method_title

 

thirdPartyShipping

0

 

onHold

status payment_method_title, and mapping saved in app settings.

shipping.last_name

shippingAddress.customerName

shipping.first_name

 

shippingAddress.addressLine1

shipping.company shipping.address_1

 

shippingAddress.addressLine2

shipping.address_2

 

shippingAddress.city

shipping.city

 

shippingAddress.state

shipping.state

 

shippingAddress.postalCode

shipping.postcode

 

shippingAddress.countryCode

shipping.country

 

shippingAddress.contactPhone

billing.phone

 

shippingAddress.email

billing.email

 

billingAddress.customerName

billing.first_name billing.last_name

 

billingAddress.addressLine1

billing.company billing.address_1

 

billingAddress.addressLine2

billing.address_2

 

billingAddress.city

billing.city

 

billingAddress.state

billing.state

 

billingAddress.postalCode

billing.postcode

 

billingAddress.countryCode

billing.country

 

billingAddress.contactPhone

billing.phone

 

billingAddress.email

billing.email

 

items[].lineItemSequenceNumber

line_items[].id

 

items[].itemID

line_items[].product_id-variation_id

 

items[].sku

line_items[].sku

 

items[].productName

line_items[].name

 

items[].quantity

line_items[].quantity

 

items[].productUrl

 

 

items[].productImageUrl

line_items.image.scr

 

items[].cancellationPolicyCode

 

 

items[].returnPolicyCode

 

 

items[].productAdditionalInfo

line_items[].meta_data[].woo.key :: line_items[].meta_data[].value

 

items[].customerPrice

line_items[].price

 

items[].discount

 

 

items[].lineItemTotal

line_items.total

 

items[].taxRate

 

 

items[].taxAmount

 

 

items[].sellerusku

line_items[].sku

 

items[].mrp

line_items.price

 

taxAmount

 

 

shipChargeAmount

 

 

subtotal

total

 

orderTotal

total

 

balanceDue

 

 

 

 

 

 

order_key

 

 

created_via

 

 

customer_ip_address

 

 

customer_user_agent

 

 

customer_note

 

 

transaction_id

Eshopbox workspace

Woocommerce

 

Eshopbox workspace

Woocommerce

 

Selling price

(Column.total + sum(Column.taxes))/qty

 

Shipping fee

sum (shipping.total + shipping.taxes)(*selling price of the item / (total selling price of all items) )

Shipping fee will be divided for all items in the ratio of its selling price.

WMS create API URL for creating orders in Eshopbox is as follows:

https://wms.eshopbox.com/api/order


Authorization Token:

We will retrieve the WMS token from the cache using the key WMSTokenCache_key. If the token is not found in the cache, it will be fetched by calling the WorkspaceToken API.

Request Body :

{ "vendorOrderNumber": "woo.number", "customerOrderNumber" : "woo.id" "orderDate" : "woo.date_created", "isCOD": "0", // if(payment_method = cod then -> 1) else -> 0 "paymentType" : "payment_method_title", "thirdPartyShipping" : "0", "onHold" : "0" depend on is status -> onhold, pending payment and configurations saved "shippingAddress": { "city": "shipping.city", "countryCode": "shipping.country", "postalCode": "shipping.postcode", "addressLine1": "shipping.company shipping.address_1", "addressLine2": "shipping.address_2", "state": "shipping.state", "countryName": "shipping.country", "contactPhone": "shipping.phone", "customerName": "shipping.first_name + shipping.last_name", "email": "" }, "billingAddress": { "city": "billing.city", "countryCode": "billing.country", "postalCode": "billing.postcode", "addressLine1": "billing.first_name billing.last_name", "addressLine2": "billing.address_2", "state": "billing.state", "countryName": "billing.country", "contactPhone": "billing.phone", "customerName": "billing.first_name billing.last_name", "email": "billing.email" }, "items": [ { "productAdditionalInfo": { "productImage" : "line_items.image.src", "mrp" : line_items.price }, "quantity": line_items[].quantity, "sellersku" : "line_items.sku", "discount": , "lineItemTotal": line_items.total, "customerPrice": line_items[].price, "productName": "line_items[].name", "itemID": line_items[].product_id-variation_id, "taxRate": , "lineItemSequenceNumber": ,line_items[].id "taxAmount": "externalWarehouseID": "Eshopbox_Mumbai", } ] }



Update Order :

  • Cases to update the order if order is not packed

Case 1 : If item is removed from Order on Woocommerce ,cancel it in Eshopbox and also if it is in mentioned status(Unfulfillable, New, Processing, or On Hold), will fetch the data from DTO which is saved after executing the OrderDetails query.

Upon receiving the list of line_item[].id from the WooCommerce response, we will compare them with the lineItemSequenceNumber set in DTO to identify any items that do not exist.

Once we received data from DTO create request body to cancel order-item in Eshopbox


Create Request-Body to Cancel Order in Eshopbox :

Cancel-Order API :

Authorization Token:

We will retrieve the WMS token from the cache using the key WMSTokenCache_key. If the token is not found in the cache, it will be fetched by calling the WorkspaceToken API.

'https://{store_slug}.auperator.co/api/cancel-order'

RequestBody :

{ "reason": "Other", "externalChannelID": {{externalChannelId}}, "cancellationTime": "2024-05-08 16:15:00", "customerOrderNumber": {{VendorOrderNumber}}, "items": [ { "itemID": {{ItemID}}, "quantity": "1", "orderItemID": {{OrderItemID}}, "lineItemSequenceNumber": {{LineItemSequenceNumber}}, "remark": "Other" } ] }



Case 2: If an item is added to a WooCommerce order, it should also be added to the corresponding Eshopbox order.

Case 2 won’t work in eshopbox , their no update order API.




Case 3 : In case of customer's details such as phone number, shipping details are updated in the WooCommerce store, the corresponding details in Eshopbox should be updated as well if the order status is Unfulfillable, New, Processing, or On Hold.

Get the data from DTO and compare it with the shipping and contact details received from Woocommerce and update the details which are changed from woocommerce end.

 

Case 4 : If order status is cancelled in Woocommerce, Cancel it in Eshopbox get order details from DTO for the order to cancel in Eshopbox.

Create Request-Body to Cancel Order in Eshopbox :

Cancel-Order API :

'https://{store_slug}.auperator.co/api/cancel-order'

RequestBody :

{ "reason": "Other", "externalChannelID": {{externalChannelId}}, "cancellationTime": "2024-05-08 16:15:00", "customerOrderNumber": {{VendorOrderNumber}}, "items": [ { "itemID": {{ItemID}}, "quantity": "1", "orderItemID": {{OrderItemID}}, "lineItemSequenceNumber": {{LineItemSequenceNumber}}, "remark": "Other" } ] }

 

Eshopbox to Woocommerce Cancel Sync :

We will listen to below cancel event from wms : /eshopbox/cancelevent/listener

{ "resource": "order_item", "eventType": "PUT", "eventSubType": "updated", "accountSlug": "myntraazon", "accountId": null, "actor": "ajay@eshopbox.com", "version": "v1", "responseData": { "channel_id": 6761, "customerOrderNumber": "5463435870321", "orderItemID": "5463435870321-30338189", "order_items_id": 30338189, "status": "CANCELLED", "shipmentStatus": "cancelled", "integrationType": "7", "thirdPartyShipping": false, "channelLabel": "Auperator Shopify", "quantity": 1, "order_id": 44217015, "customerName": "Abhisek Charusia", "productName": "T7 Shooting Regular Fit Knitted Shirt", "customerContactNumber": "917801026007", "account_id": 3188, "remarks": null, "type": "customer_cancel", "externalChannelID": "CH6761", "reason": "Item unavailable", "cancellationDateTime": "2024-06-05 12:17:50", "actor": "ajay@eshopbox.com", "source": "workspace", "notifyCustomer": true } }

 

Step 1 : For the above event we will check few points-

  1. source = workspace

  2. eventSubType= updated

  3. resource = order_item

If event has above mentioned cases then we will create cancel request body to get the order cancelled on Woocommerce.

Step 2 : Fetch the connectionId from channel_data

Select connectionId from channels where id = : channel_id

After obtaining connectionId from the query result, will retrieve channeldata and Inputfields from cache, if not present in cache will get it from database.


Order Update API on Woocommerce

https://{store_slug}.wpcomstaging.com/wp-json/wc/v3/orders/customerOrderNumber

RequestBody :

{ "status" : "cancelled" }

 

Update Order Webhook

Event Listener : /webhooklistener/woo/updateorder/{connectionId}

Event Received from Webhook :

{ "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } }

Step 2: Upon receiving the event, will extract the connectionId from the URL. Using this connectionId, it will retrieve the corresponding channel data and credentials (consumer_key and consumer_secret) from the cache.

The WooCommerce API credentials (consumer_key and consumer_secret) will be obtained from the cache using the key inputFields_{connectionId}.

inputFields_{connectionId} : { "store_name" : "mayurKarwa123", "consumer_key" : "7r6t9843r30ytuye", "consumer_secret" : "5ehgcvndbcvxjhdge" }

 

Additionally, the channel data associated with the connection will be fetched from the cache using the key channeldata_{connectionId}.

channeldata_{connectionId} : { "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" } }

 

 

If Channel Data does not exist in Cache will get it from below query and set it in the cache

SELECT channels.connectionId,channels.externalChannelId ,external_wms_channels.locationId, warehouses.externalWarehouseId,accounts.account_slug,channels.integration_model_id , channels.integrationType AS integrationType FROM channels LEFT JOIN external_wms_channels ON channels.id= external_wms_channels.channel_id LEFT JOIN warehouses ON warehouses.id = external_wms_channels.warehouse_id LEFT JOIN accounts ON channels.account_id = accounts.id WHERE channels.connectionId IN (:connectionId)

Step 3 : Fetch the Reconciliation Connection data from below Query :

SELECT ie_app_automation_steps.appId, ie_app_automation_steps_config.isActive, ie_app_automation_steps_config.otherDetails AS otherDetails, ie_appinstall_connection.isActive AS appIsActive FROM ie_appinstall_connection LEFT JOIN ie_app_installation ON ie_app_installation.appInstallationId = ie_appinstall_connection.appInstallationId LEFT JOIN ie_app ON ie_app.appId = ie_app_installation.appId LEFT JOIN ie_app_automation_steps ON ie_app_automation_steps.appId = ie_app.appId LEFT JOIN ie_app_automation_steps_config ON ie_app_automation_steps_config.connectionId = ie_appinstall_connection.id AND ie_app_automation_steps_config.appAutomationStepId = ie_app_automation_steps.id WHERE ie_appinstall_connection.id = 4315 AND ie_app_automation_steps_config.isActive = '1'

 

Step 4 :Now, we will prepare an object as shown below from the data received by executing the above query and send it further in the TaskQueue

{ "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" }, "inputFields": "{\"store_name\":\"mayurkarwa123.wpcomstaging.com\",\"consumer_key\":\"ck_8ce680aa9f62e9e8cc3b8a3e5726e88b6330971c\",\"consumer_secret\":\"cs_4c0e11113b90ee98df2657821bcbd02fc4f64991\"}", "appIsActive": "active", "otherDetails": "Setting saved for create order", "appId": 658, "isActive": "1", "orderDetails" : [ { "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } } ]

 

Once the above data is pushed to the task queue, the process will follow the same steps mentioned for webhooks, ultimately pushing the orders to PubSub for further processing.


Order Reconcilation :


Step 1: At first, we will fetch all the active connections on the basis of integration type of WooCommerce.

SELECT DISTINCT connectionId AS connectionIds FROM channels WHERE integrationType =:integrationType AND channels.status='0'

 

Step 2: Secondly, we will iterate over the connection id

Using this connectionId, it will retrieve the corresponding channel data and credentials (consumer_key and consumer_secret) from the cache.

The WooCommerce API credentials (consumer_key and consumer_secret) will be obtained from the cache using the key inputFields_{connectionId}.

inputFields_{connectionId} : { "store_name" : "mayurKarwa123", "consumer_key" : "7r6t9843r30ytuye", "consumer_secret" : "5ehgcvndbcvxjhdge" }

 

Additionally, the channel data associated with the connection will be fetched from the cache using the key channeldata_{connectionId}.

channeldata_{connectionId} : { "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" } }

 

If Channel Data does not exist in Cache will get it from below query and set it in the cache

SELECT channels.connectionId,channels.externalChannelId ,external_wms_channels.locationId, warehouses.externalWarehouseId,accounts.account_slug,channels.integration_model_id , channels.integrationType AS integrationType FROM channels LEFT JOIN external_wms_channels ON channels.id= external_wms_channels.channel_id LEFT JOIN warehouses ON warehouses.id = external_wms_channels.warehouse_id LEFT JOIN accounts ON channels.account_id = accounts.id WHERE channels.connectionId IN (:connectionId)

 

Step 3 : Fetch the Connection data from below Query :

SELECT ie_appinstall_connection.id AS connectionId, ie_appinstall_connection.inputFields, ie_app_automation_steps.id AS appAutomationStepId, ie_app_automation_steps.appId, ie_app_automation_steps_config.isActive, ie_app_automation_steps_config.otherDetails AS otherDetails, ie_appinstall_connection.isActive AS appIsActive, ie_app_automation_steps_config.latestSyncTimeStamp AS latestSyncTimeStamp FROM ie_appinstall_connection LEFT JOIN ie_app_installation ON ie_app_installation.appInstallationId = ie_appinstall_connection.appInstallationId LEFT JOIN ie_app ON ie_app.appId = ie_app_installation.appId LEFT JOIN ie_app_automation_steps ON ie_app_automation_steps.appId = ie_app.appId LEFT JOIN ie_app_automation_steps_config ON ie_app_automation_steps_config.connectionId = ie_appinstall_connection.id AND ie_app_automation_steps_config.appAutomationStepId = ie_app_automation_steps.id WHERE ie_appinstall_connection.id = :connectionId AND ie_app_automation_steps.id = :appAutomationStepId AND ie_app_automation_steps_config.isActive = '1';


Step 6 : From above Query we can get latestSyncTimeStamp then call the get all Order API of Woocommerce with modified_after filter.

Order API :

https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders?modified_after

We will apply pagination while calling Order API per_page will receive 10 response


Response :

{ "id": 217, "parent_id": 0, "status": "cancelled", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-06-04T17:34:18", "date_modified": "2024-06-04T17:41:55", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "1130.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_TlEKKpQfhjxuK", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "bbc5e2a2df413a51835264187912da59", "number": "217", "meta_data": [ { "id": 162, "key": "is_vat_exempt", "value": "no" }, { "id": 159, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 160, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 158, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 161, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 173, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 166, "key": "_wc_order_attribution_referrer", "value": "https://mayurkarwa123.wpcomstaging.com/wp-login.php?action=jetpack-sso&result=success&user_id=243298035&sso_nonce=ru0kfggr7f4v5zgj0c46&calypso_env=production" }, { "id": 171, "key": "_wc_order_attribution_session_count", "value": "3" }, { "id": 168, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 170, "key": "_wc_order_attribution_session_pages", "value": "19" }, { "id": 169, "key": "_wc_order_attribution_session_start_time", "value": "2024-06-03 11:14:26" }, { "id": 165, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 172, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 167, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 29, "name": "bedsheet", "product_id": 144, "variation_id": 0, "quantity": 1, "tax_class": "reduced-rate", "subtotal": "356.00", "subtotal_tax": "0.00", "total": "356.00", "total_tax": "0.00", "taxes": [], "meta_data": [], "sku": "bedsheet", "price": 356, "image": { "id": "126", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/curtains.jpg?fit=269%2C187&ssl=1" }, "parent_name": null }, { "id": 30, "name": "blanket", "product_id": 179, "variation_id": 0, "quantity": 1, "tax_class": "reduced-rate", "subtotal": "430.00", "subtotal_tax": "0.00", "total": "430.00", "total_tax": "0.00", "taxes": [], "meta_data": [], "sku": "checkblanket", "price": 430, "image": { "id": "126", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/curtains.jpg?fit=269%2C187&ssl=1" }, "parent_name": null }, { "id": 31, "name": "CosmeticTest", "product_id": 158, "variation_id": 0, "quantity": 1, "tax_class": "reduced-rate", "subtotal": "344.00", "subtotal_tax": "0.00", "total": "344.00", "total_tax": "0.00", "taxes": [], "meta_data": [], "sku": "woocos", "price": 344, "image": { "id": "75", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/03/organicproducts1-1.jpg?fit=500%2C329&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/217/?pay_for_order=true&key=wc_order_TlEKKpQfhjxuK", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-06-04T12:04:18", "date_modified_gmt": "2024-06-04T12:11:55", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/217" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } }

 

To avoid the "task queue too large" error, we will send the response in partitions.


Step 6 : Create the Object with channel- connection data and Order data we received from woocommerce and push it in taskqueue for each connection
TaskQueue Endpoint : /woo/listen/createOrders/{connectionId}

{ "channelData": { "integrationType": "17", "externalChannelId": " ", "accountSlug": " ", "connectionId": " ", "location": { "Test": "Warehouse" }, "inputFields": "{\"store_name\":\"mayurkarwa123.wpcomstaging.com\",\"consumer_key\":\"ck_8ce680aa9f62e9e8cc3b8a3e5726e88b6330971c\",\"consumer_secret\":\"cs_4c0e11113b90ee98df2657821bcbd02fc4f64991\"}", "appIsActive": "active", "otherDetails": "Setting saved for create order", "appId": 658, "isActive": "1", "orderDetails" : [ { "id": 207, "parent_id": 0, "status": "processing", "currency": "INR", "version": "8.9.1", "prices_include_tax": false, "date_created": "2024-05-30T13:11:38", "date_modified": "2024-05-30T13:12:00", "discount_total": "0.00", "discount_tax": "0.00", "shipping_total": "0.00", "shipping_tax": "0.00", "cart_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "customer_id": 43451158, "order_key": "wc_order_pW6OfihwNSgCY", "billing": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "email": "harshita.shinde@eshopbox.com", "phone": "" }, "shipping": { "first_name": "Harshita", "last_name": "Shinde", "company": "", "address_1": "Wework", "address_2": "kalyani nagar", "city": "Pune", "state": "MH", "postcode": "411006", "country": "IN", "phone": "" }, "payment_method": "cod", "payment_method_title": "Cash on delivery", "transaction_id": "", "customer_ip_address": "14.142.236.2", "customer_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36", "created_via": "store-api", "customer_note": "", "date_completed": null, "date_paid": null, "cart_hash": "662a325a849e052bd7c67cd0682afd9f", "number": "207", "meta_data": [ { "id": 81, "key": "is_vat_exempt", "value": "no" }, { "id": 78, "key": "_coupons_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 79, "key": "_fees_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 77, "key": "_shipping_hash", "value": "9d4568c009d203ab10e33ea9953a0264" }, { "id": 80, "key": "_taxes_hash", "value": "d751713988987e9331980363e24189ce" }, { "id": 91, "key": "_wc_order_attribution_device_type", "value": "Desktop" }, { "id": 89, "key": "_wc_order_attribution_session_count", "value": "25" }, { "id": 86, "key": "_wc_order_attribution_session_entry", "value": "https://mayurkarwa123.wpcomstaging.com/" }, { "id": 88, "key": "_wc_order_attribution_session_pages", "value": "10" }, { "id": 87, "key": "_wc_order_attribution_session_start_time", "value": "2024-02-09 06:31:50" }, { "id": 84, "key": "_wc_order_attribution_source_type", "value": "typein" }, { "id": 90, "key": "_wc_order_attribution_user_agent", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36" }, { "id": 85, "key": "_wc_order_attribution_utm_source", "value": "(direct)" } ], "line_items": [ { "id": 15, "name": "Mouse", "product_id": 194, "variation_id": 0, "quantity": 2, "tax_class": "reduced-rate", "subtotal": "2466.00", "subtotal_tax": "0.00", "total": "2466.00", "total_tax": "0.00", "taxes": [], "meta_data": [ { "id": 142, "key": "_reduced_stock", "value": "2", "display_key": "_reduced_stock", "display_value": "2" } ], "sku": "mousecheck", "price": 1233, "image": { "id": "155", "src": "https://i0.wp.com/mayurkarwa123.wpcomstaging.com/wp-content/uploads/2024/04/earbuds.jpg?fit=225%2C225&ssl=1" }, "parent_name": null } ], "tax_lines": [], "shipping_lines": [], "fee_lines": [], "coupon_lines": [], "refunds": [], "payment_url": "https://mayurkarwa123.wpcomstaging.com/checkout/order-pay/207/?pay_for_order=true&key=wc_order_pW6OfihwNSgCY", "is_editable": false, "needs_payment": false, "needs_processing": true, "date_created_gmt": "2024-05-30T07:41:38", "date_modified_gmt": "2024-05-30T07:42:00", "date_completed_gmt": null, "date_paid_gmt": null, "currency_symbol": "₹", "_links": { "self": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders/207" } ], "collection": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/orders" } ], "customer": [ { "href": "https://mayurkarwa123.wpcomstaging.com/wp-json/wc/v3/customers/43451158" } ] } } ]


Once the above data is pushed to the task queue, the process will follow the same steps mentioned for webhooks, ultimately pushing the orders to PubSub for further processing.

 

Updating Tracking Details to Woocommerce :

Step 1 : We will listen for the "shipment packed" event from the WMS in order to fetch tracking details from Eshopbox and update them in WooCommerce.
listener : listen/woo/packed/shipment

Event from WMS :

{ "resource": "shipment", "eventType": "PUT", "eventSubType": "packed", "accountSlug": "royalcanin", "accountId": null, "actor": "SYSTEM", "version": "v1", "request_data": [], "response_data": { "customerOrderNumber": "5876175733027", "orderSiteID": "", "vendorOrderNumber": "#6397", "externalShipmentID": "5876175733027-2468-5812", "externalWarehouseID": "Royalcanin_421302", "externalChannelID": "CH2468", "externalWmsChannelName": "ROYALCANIN_SHOPIFY_STORE_ROYALCANIN_421302_3190", "external_wms_channel_id": 3190, "channelLabel": "findroyalcanin store", "integrationType": "7", "vendorPartyID": null, "partner_as2_id": null, "defaultWarehouseCode": "Royalcanin_421302", "facilityLabel": "MRFRC Bhiwandi(421302)", "flexStatus": "1", "facilityType": "auperator", "orderDate": "2024-06-05 22:15:06", "portal_id": 27, "paymentType": "Cashfree Payments", "expectedShipDate": "2024-06-06 12:00:00", "dispatchAfterDate": null, "externalManifestNumber": null, "channelManifestNumber": null, "order_id": 54250327, "channel_id": 2468, "warehouse_id": 813, "channel_account_id": 0, "account_id": 1181, "connectionId": 1798, "locationId": "86450700579", "region": "", "isMetro": "1", "isSpecialplace": "0", "shippingConnectionId": 0, "picklistCode": null, "invoiceNumber": "INVROYT2805", "boxType": "UNKNOWN", "isPriorityShipment": "0", "isGift": "0", "invoice_url": "https://storage.googleapis.com/invoicefiles-prod/invoice/587617573302724685812-1717605988500.pdf", "invoiceDate": "2024-06-05 22:16:27", "label_url": "https://storage.googleapis.com/eshopbox_wms_uploads/myntraLabel/20240606122339921599038.pdf", "labels": "", "shippingInfo": [], "boxAdditionalRecommendation": [], "dimension_length": "52", "dimension_width": "26", "dimension_height": "39", "weight": "3010", "chargeableWeight": "10545.6", "trackingID": "1704614787646", "trackingDomain": "tracking.findroyalcanin.com", "packageID": "", "barcode": "", "barcodeType": "item", "taxAmount": 0, "shipChargeAmount": 0, "courierName": "Delhivery", "cp_id": 4, "created_at": "2024-06-05 22:15:21", "updated_at": "2024-06-06 12:23:40", "status": "packed", "remarks": "", "warehousePincode": "421302", "thirdPartyShipping": false, "customerName": "Rahul Ojha", "customerContactNumber": "09742227271", "email": "imrahulojhaa@gmail.com", "channelSlug": "royalcanin", "status_updated_at": "2024-06-06 12:23:40", "status_log": { "created": "2024-06-05 22:15:21", "accepted": "2024-06-05 22:16:22", "picked": "2024-06-06 12:23:25", "packed": "2024-06-06 12:23:40" }, "status_log_first_occurrence": { "packed": "2024-06-06 12:23:40", "picked": "2024-06-06 12:23:25", "accepted": "2024-06-05 22:16:22", "created": "2024-06-05 22:15:21" }, "status_log_count": { "created": 1, "accepted": 1, "picked": 1, "packed": 1 }, "status_log_id": "159617453", "orderExternalCreatedAt": "2024-06-05 22:15:16", "riskScore": "Low", "riskScoreReasons": [], "pincodeServiceableRemarks": "", "orderAdditionalInfo": "", "shippingAddress": { "customerName": "Rahul Ojha", "addressLine1": "Sri Krishna Excel Stone Balagere", "addressLine2": "204 D Block Balagere Rd, Opposite Udupi Garden", "city": "Bengaluru", "state": "Karnataka", "postalCode": "560087", "countryCode": "IN", "countryName": "INDIA", "contactPhone": "9742227271", "email": "imrahulojhaa@gmail.com" }, "billingAddress": { "customerName": "Rahul Ojha", "email": "imrahulojhaa@gmail.com", "contactPhone": "09742227271" }, "warehouseAddress": { "addressLine1": "Sonale Bapgaon Road, DBG Estate, Bapgaon Sonale Road,\n", "addressLine2": "Bapgaon village, Post - Lonad, Bapgaon, Bhiwandi\nPin Code: 421302", "city": "thane", "state": "Maharashtra", "postalCode": "421302", "gstin": "27AFFPT7811Q1ZL" }, "id": 22368252, "orderTotal": 2635, "subTotal": 2635, "isCOD": "0", "track_payload": [], "packed_date": "2024-06-06 12:23:40", "items": [ { "order_item_id": 37659442, "lineItemSequenceNumber": 14850202763555, "orderItemID": "5876175733027-37659442", "itemID": "49587107660067", "sku": "30CM23HJGM1", "asin": "", "productName": "» Holdall Bag (100% off)", "quantity": 1, "orderItemCreatedAt": "2024-06-05 22:15:16", "customerPrice": 0, "lineItemTotal": 0, "invoiceTotal": 0, "cashOnDeliveryCharges": 0, "discount": 0, "taxRate": 0, "taxAmount": 0, "inventoryItemCode": "", "giftMessage": "", "isGift": "0", "giftLabelContent": "", "lineItemOrderStatus": "", "orderItemIDs": [ "5876175733027-37659442" ], "productImageUrl": "https://cdn.shopify.com/s/files/1/0762/8183/9907/files/RC035_HoldallRed.png?v=1700139614", "productAdditionalInfo": { "productDetails": { "unitPrice": 0.95, "hsnCode": "23091000", "dimensionHeight": 25.4, "dimensionLength": 38, "dimensionUnit": "cm", "description": "Holdall Bag", "weight": 10, "mrp": 1, "dimensionWidth": 25.4, "type": "BASE", "verticalName": "Petcare", "imageUrl": "https://cdn.shopify.com/s/files/1/0762/8183/9907/files/RC035_HoldallRed.png?vu003d1700139614", "accountSlug": "royalcanin", "sku": "7589412082130", "esin": "30CM23HJGM1", "brand": "Royal Canin", "additionalNames": { "ean": "7589412082130", "others": [ "7589412082130" ] }, "status": "ACTIVE", "weightUnit": "g" }, "batchDetails": { "workspace": "royalcanin", "stopShipDate": "Jan 26, 2027, 12:00:00 AM", "itemsAdded at": "May 6, 2024, 1:45:31 PM", "manufacturingDate": "May 1, 2024, 12:00:00 AM", "batchingMethod": "manufacturingDate", "scannableIdentifier": "7589412082130", "shelfLife": 1000, "esin": "30CM23HJGM1", "batchID": "DI-BDID000604", "batchingAvailability": "Enabled", "id": "6638defbbec17d58c0b403dc" } }, "expectedDeliveryDate": null, "shippingCharges": 0, "productUrl": null, "originalOrderItemId": null, "isVirtualKit": "0", "component": [], "onhold": "0", "cancellationAdditionalReason": "", "cancellationReason": "", "customerOrderItemID": "", "recallBlockedInventoryUsed": "" }, { "order_item_id": 37659443, "lineItemSequenceNumber": 14850202796323, "orderItemID": "5876175733027-37659443", "itemID": "47063746380067", "sku": "075CO3HEWSC", "asin": "", "productName": "Royal Canin Labrador Retriever Puppy", "quantity": 1, "orderItemCreatedAt": "2024-06-05 22:15:16", "customerPrice": 2835, "lineItemTotal": 2635, "invoiceTotal": 2635, "cashOnDeliveryCharges": 0, "discount": 200, "taxRate": 0, "taxAmount": 0, "inventoryItemCode": "", "giftMessage": "", "isGift": "0", "giftLabelContent": "", "lineItemOrderStatus": "", "orderItemIDs": [ "5876175733027-37659443" ], "productImageUrl": "https://cdn.shopify.com/s/files/1/0762/8183/9907/files/LabradorRetrieverPuppy-1.jpg?v=1685987951", "productAdditionalInfo": { "size": "3 KG", "productDetails": { "unitPrice": 2835, "hsnCode": "23091000", "dimensionHeight": 51.6, "dimensionLength": 25, "dimensionUnit": "cm", "description": "Labrador Retriever Puppy-3 kg", "weight": 3000, "mrp": 3150, "dimensionWidth": 13.1, "type": "BASE", "verticalName": "Petcare", "imageUrl": "https://cdn.shopify.com/s/files/1/0762/8183/9907/files/LabradorRetrieverPuppy-1.jpg?vu003d1685987951", "accountSlug": "royalcanin", "sku": "3182550725507", "esin": "075CO3HEWSC", "brand": "Royal Canin", "additionalNames": { "ean": "3182550725507", "others": [ "3182550725507" ] }, "status": "ACTIVE", "weightUnit": "g" }, "batchDetails": { "workspace": "royalcanin", "stopShipDate": "May 24, 2025, 12:00:00 AM", "itemsAdded at": "May 23, 2024, 9:12:52 AM", "manufacturingDate": "Dec 1, 2023, 12:00:00 AM", "batchingMethod": "manufacturingDate", "scannableIdentifier": "3182550725507", "shelfLife": 540, "esin": "075CO3HEWSC", "batchID": "DI-BDID000632", "batchingAvailability": "Enabled", "id": "664f0894f8d9ca11dfcab19d" } }, "expectedDeliveryDate": null, "shippingCharges": 0, "productUrl": null, "originalOrderItemId": null, "isVirtualKit": "0", "component": [], "onhold": "0", "cancellationAdditionalReason": "", "cancellationReason": "", "customerOrderItemID": "", "recallBlockedInventoryUsed": "" } ], "balanceDue": 0, "shippingRuleId": "859", "shippingRuleIdDetail": "settings/shipping-mode/edit/859", "shippingRuleName": "Shipping allocation rule" }, "previous_data": [], "resource_type": "shipment.update", "account_slug": "royalcanin", "custom": [] }


From the "shipment packed" event, we will retrieve the tracking ID and courier name. These details will be used to update WooCommerce. Additionally, we will fetch the WooCommerce credentials from the cache using the inputFieldskey_{connectionId} cache key.

Woocommerce Update Order API :

https://{store_slug}/wp-json/wc/v3/orders/{customerOrderNumber}


RequestBody :

{ "meta_data": [ { "key": "trackingId", "value": "4567899" }, { "key": "courierName", "value": "ekart" } ] }

Update completed status on Woocommerce :

Step 1 : We will listen to "shipment delivered" event from the WMS to update the order status on Woocommerce


listener : listen/woo/complete/shipment

Event from WMS :

{ "resource": "shipment", "eventType": "PUT", "eventSubType": "delivered", "accountSlug": "shuklaenterprises", "accountId": null, "actor": "SYSTEM", "version": "v1", "request_data": [], "response_data": { "customerOrderNumber": "5658752418047", "orderSiteID": null, "vendorOrderNumber": "RET_SYNC1159", "externalShipmentID": "5658752418047-6409-9219", "externalWarehouseID": "Shuklaenterprises_UP32", "externalChannelID": "CH6409", "externalWmsChannelName": "AUPERATOR_SHOPIFY_SHUKLAENTERPRISES_UP32_2879", "external_wms_channel_id": 2879, "channelLabel": "Auperator Shopify (Ayushman Testing)", "integrationType": "7", "barcodeType": "sku", "vendorPartyID": null, "partner_as2_id": null, "defaultWarehouseCode": "Shuklaenterprises_UP32", "facilityLabel": "Lucknow facility (UP32)", "flexStatus": "1", "facilityType": "auperator", "orderDate": "2024-06-05 11:57:52", "portal_id": 37, "paymentType": null, "expectedShipDate": "2024-06-06 12:00:00", "dispatchAfterDate": null, "externalManifestNumber": null, "channelManifestNumber": null, "order_id": 44217117, "channel_id": 6409, "warehouse_id": 1624, "channel_account_id": 0, "account_id": 2816, "connectionId": 4132, "locationId": "74143006975", "region": "Zonal", "isMetro": "0", "isSpecialplace": "0", "shippingConnectionId": null, "picklistCode": null, "invoiceNumber": "INVSHUL72", "boxType": "UNKNOWN", "isPriorityShipment": "0", "isGift": "0", "invoice_url": "https://storage.googleapis.com/invoicefiles-staging/invoice/565875241804764099219-1717574499935.pdf", "invoiceDate": "2024-06-05 13:31:24", "label_url": "https://storage.googleapis.com/eshopbox_wms_uploads_staging/myntraLabel/20240605133145757547421.pdf", "labels": "", "shippingInfo": [], "boxAdditionalRecommendation": [], "pickupFailedAttempts": 0, "dimension_length": "20", "dimension_width": "20", "dimension_height": "20", "weight": "20", "chargeableWeight": "1600", "trackingID": "593816220331", "trackingDomain": "", "packageID": "", "barcode": "", "taxAmount": 0, "shipChargeAmount": null, "courierName": "Self", "cp_id": 35, "created_at": "2024-06-05 11:59:07", "updated_at": "2024-06-05 13:31:46", "status": "delivered", "remarks": "manual update - delivered", "warehousePincode": "226010", "thirdPartyShipping": false, "customerName": "Ayush Singh", "customerContactNumber": "919168723777", "email": "shweta.wadikar@eshopbox.com", "channelSlug": "shuklaenterprises", "status_updated_at": "2024-06-05 14:08:28", "status_log": { "created": "2024-06-05 11:59:07", "packed": "2024-06-05 13:31:46", "delivered": "2024-06-05 14:08:28" }, "status_log_first_occurrence": { "delivered": "2024-06-05 14:08:28", "packed": "2024-06-05 13:31:46", "created": "2024-06-05 11:59:07" }, "status_log_count": { "created": 1, "packed": 1, "delivered": 1 }, "status_log_id": "254651667", "orderExternalCreatedAt": "2024-06-05 11:59:02", "riskScore": null, "riskScoreReasons": "", "productDimensions": { "length": 10, "weight": 20, "breadth": 20, "height": 30 }, "pincodeServiceableRemarks": null, "weightProtectionShieldFlag": false, "shippingAddress": { "customerName": "Ayush Singh", "addressLine1": "myazon", "addressLine2": "133/81 Kidwainagar Avenue Marble Market Kidwai Nagar", "city": "Kanpur Nagar", "state": "Uttar Pradesh", "postalCode": "208011", "countryCode": "IN", "countryName": "INDIA", "contactPhone": "9168723777", "email": "shweta.wadikar@eshopbox.com" }, "warehouseAddress": { "addressLine1": "133/723 Gomti Nagar Lucknow", "addressLine2": "", "city": "Lucknow", "state": "Uttar Pradesh", "postalCode": "226010", "gstin": "" }, "billingAddress": { "customerName": "Ayush Singh", "email": "shweta.wadikar@eshopbox.com", "contactPhone": "919168723777" }, "recommendedPackage": { "id": 761, "package_id": "PC20240430074130", "package_code": "BOX1", "package_description": "Box Packaging", "account_id": 2816, "package_type": "box", "status": "unverified", "package_verification": "OFF", "availability": "1", "length": 20, "width": 20, "height": 20, "rejection_codes": null, "dead_weight": 1, "volumetric_weight": 1.6, "length_imageurl": null, "width_imageurl": null, "height_imageurl": null, "dead_weight_imageurl": null, "created_at": "2024-04-30 13:11:30", "updated_at": "2024-04-30 13:11:30", "shipment_additional_details_id": 917, "warehouseRecommendedPackageId": 0, "shipmentAdditionalDetailPackage": { "shippingPackages": { "dimension_height": 20, "packageId": "PC20240430074130", "packageCode": "BOX1", "weight": 20, "dimension_width": 20, "dimension_length": 20, "chargeableWeight": 1600, "weightProtectionShieldFlag": false, "shippingMode": "standard", "reasonForPackageChange": null, "type": "custom" } } }, "shippingMode": "standard", "totalItemsWeight": 19, "portalUrl": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSMTVs0QAk8zn1HybVnMWMKrX_FcoDdOjYLvigHG38Y6GSpxl2m1xHAV7q1EUyEgn-kwpk&usqp=CAU", "id": 11208756, "balanceDue": 2999, "orderTotal": 2999, "subTotal": 2999, "isCOD": "1", "track_payload": { "clickPostTrackData": { "location": null, "additional": { "courier_partner_edd": null, "destination_hub_inscan_ts": null, "order_id": "5658752418047-6409-9219", "latest_status": { "status": "DELIVERED", "clickpost_status_description": "Delivered", "clickpost_status_bucket": 6, "reference_number": "5658752418047-6409-9219", "clickpost_status_bucket_description": "Delivered", "remark": "MANUAL UPDATE - DELIVERED", "timestamp": "2024-06-05T14:08:23Z", "location": null, "clickpost_city": null, "clickpost_status_code": 8 }, "is_rvp": false, "ndr_status_code": null, "ndr_status_description": null, "account_code": "self_delivery_test", "npr_status_code": null, "npr_status_description": null }, "status": "DELIVERED", "clickpost_city": null, "clickpost_status_code": 8, "clickpost_status_description": "Delivered", "cp_id": 35, "remark": "MANUAL UPDATE - DELIVERED", "account_code": "self_delivery_test", "waybill": "593816220331", "timestamp": "2024-06-05T14:08:23Z" } }, "account_slug": "shuklaenterprises", "packed_date": "2024-06-05 13:31:46", "itemsWeightProtectionShieldFlag": false, "items": [ { "order_item_id": 30338369, "lineItemSequenceNumber": 14042068386047, "orderItemID": "5658752418047-30338369", "itemID": "46872053252351", "sku": "665YB3H3F77", "asin": "", "productName": "Dummy Brand 2", "quantity": 1, "orderItemCreatedAt": "2024-06-05 11:59:02", "customerPrice": 2999, "lineItemTotal": 2999, "invoiceTotal": 2999, "cashOnDeliveryCharges": 0, "discount": 0, "taxRate": 0, "taxAmount": 0, "inventoryItemCode": "", "giftMessage": "", "isGift": "0", "giftLabelContent": "", "lineItemOrderStatus": "", "orderItemIDs": [ "5658752418047-30338369" ], "productImageUrl": "https://cdn.shopify.com/s/files/1/0685/4846/0799/files/laptop.png?v=1717484756", "productAdditionalInfo": { "specification": [ "is dangerous" ], "productImageUrl": "https://cdn.shopify.com/s/files/1/0685/4846/0799/files/laptop.png?v=1717484756", "weight": 650, "mrp": "3000.00", "productDetails": { "unitPrice": 2666, "hsnCode": "14011966", "dimensionHeight": 30, "dimensionLength": 10, "dimensionUnit": "cm", "weight": 20, "weight_dimension_status": "unverified", "mrp": 3001, "dimensionWidth": 20, "type": "BASE", "imageUrl": "https://cdn.shopify.com/s/files/1/0685/4846/0799/files/laptop.png?v=1717484756", "accountSlug": "shuklaenterprises", "sku": "SKU14011966", "esin": "665YB3H3F77", "additionalNames": [], "status": "ACTIVE", "weightUnit": "g" } }, "expectedDeliveryDate": null, "shippingCharges": 0, "productUrl": null, "originalOrderItemId": null, "isVirtualKit": "0", "component": [], "onhold": "0", "cancellationAdditionalReason": "", "cancellationReason": "", "customerOrderItemID": "", "recallBlockedInventoryUsed": "" } ] }, "previous_data": [], "resource_type": "shipment.update", "account_slug": "shuklaenterprises", "custom": [] }

 

We will listen for the "shipment delivered" event and update the order status to "completed" on WooCommerce. Additionally, we will retrieve the WooCommerce credentials from the cache using the inputFieldskey_{connectionId} cache key.

Woocommerce Update Order API :

https://{store_slug}/wp-json/wc/v3/orders/{customerOrderNumber}

 

RequestBody :

{ "status" : "completed" }

 

 

Open points to discuss -
1.While canceling an order from the Eshopbox workspace, you will have the option to select if the order should be canceled on Woocommerce or not. This option should be available and will work even if you keep the order cancellation sync off. In this case we are listening to a wms event need to ask wms service to send the event on topic only when user agree to get it sync on woocommerce?

We are not able to update any status except pending payment, processing, on-hold, completed on woocommerce, also customer can not edit the product once the order status is in processing state on woocommerce.

Getting below Response when trying to update the status-

 

image-20240606-063612.png

 

Related content