Objective
The object of this article is to provide the tracking updates for the requested tracking ids to unicommerce platform. this will help them track the shipments after they have already been packed.
To provide shipment tracking updates, a GET api needs to be developed will be exposed which unicommerce. unicommerce will send tracking ids list in request (maximum 50 tracking ids) of this API and in response, it will return the tracking details for all these requested tracking ids.
What are the Steps to achieve this task ?
We will need to share all our all tracking statuses list or tracking statuses code with unicommerce so that they can map them.
Develop a Get API inshippingAppEndpoint of GCP Project - ESB integration Engine and esb wms API service
Api details :-Endpoint: /waybillDetails Request Type: GET Scheme: HTTPS Header (Content-Type): application/json Header (Authorization): token (got from SP Authentication)
Request body from unicommerce hits the GEP API /waybillDetails . Request will be in params
waybills: "123,ABC,ORD123"
Get waybills from request body params and store them in a List<String> trackingIds.
Query from DB to fetch all the shipment details required for response from shipments and shipment status logs table from DB for all tracking ids
Prepare and return the response
Success Response
{ "Status": "SUCCESS", "waybillDetails": [ { "waybill": "80224636450", "currentStatus": "PICKUP_PENDING",----------Most recent courier status of AWB, statuscode or status "current_sub_status": "out for pickup",-----to be discussed "statusDate": "05-Aug-2023 03:52:09"--------Last status date }, { "waybill": "12345678", "currentStatus": "PICKUP_PENDING", "current_sub_status": "out for pickup", "statusDate": "05-Aug-2023 03:52:09" } ] "message": "String"-----------------------------to be discussed }
Error Response
{ "status":"FAILED", "message":"failure reason", ------e.g.,Connect to Shipping Provider (to be disccsed) "waybillDetails":[] }
Open Point :-
If out of 10 requested tracking ids, we get data for only 8 tracking ids, then for rest two tracking ids how can we notify that these two tracking ids were not a success