HLD- Unicommerce Returns Integration
HLD mainly comprises of following two broad sections:
System Design Diagram (aka Component Diagram)
Sequence Diagram
System Design Diagram
Here is the breakdown of flow:
For the directly integrated channels, returns are synced with Unicommerce and in order to create those returns in Eshopbox, a GET unicommerce returns API will be created to fetch the returns created for a particular channel.
The cron job will be scheduled with frequency to call the GET Unicommrce returns API. This API will use the below API to get return details.
Search sale order API of Unicommerce: https://documentation.unicommerce.com/docs/saleorder-search.html
Call this API with the ‘date-time’ and ‘updated since’ filter with the return statuses.
Get sale order API of Unicommerce: https://documentation.unicommerce.com/docs/saleorder-get.html
Call this API for each sale order code received in the above API to get the details of the return.
This API also gives us the type of return.
Call the create return API of Eshopbox to create a return on Eshopbox and the client portal service will fetch the return details from the DB and update it to Algolia and hence the client workspace.
When we receive and process the return in the Auperator, the below cases can occur:
Customer return was created beforehand and received at the warehouse.
Automation will be triggered and mark the return as identified in Auperator and update the receiving and processing details in Eshopbox. And simultaneously trigger the return completed event. The Eshopbox service will listen to this event and will check If the reverse pickup was created for the order then:
Fetch the reverse pickup code from UC and call the mark sale order return with inventory type API to mark the return complete on Unicommerce.
If reverse pickup was not already created, call create reverse pickup API to create the reverse pickup and then call the mark sale order return with inventory type API to mark the return complete on Unicommerce.
Courier return was created beforehand and received at the warehouse.
Automation will be triggered and mark the return as identified in Auperator and update the receiving and processing details in Eshopbox. And simultaneously trigger the return completed event. The Eshopbox service will listen to this event and call the mark sale order return with inventory type API to mark the return complete on Unicommerce.
The client portal service will fetch the return details from the DB and update it to Algolia and hence the client workspace.
Inventory will be adjusted accordingly on Unicommerce.
2. Sequence Diagram
2. Return was not created but received at Auperator.
3. Return was created but some of the items were missing.