Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Hosted by 3rd Party: Marcel Digital

www.marceldigital.com

Olivia / Project Manager / opugliese@marceldigital.com (
Jeff Belasco jbelasco@marceldigital.com was told no longer on the project as of 4.5.23

Casey Jordan/ Website Developer /  cjordan@marceldigital.com

Developer contact: alex@marceldigital.com

SEKO API Call

This is the endpoint that we are currently using: https://mysekoapi.sekologistics.io/tracking-service/track/

Here is an example with the tracking number: https://mysekoapi.sekologistics.io/tracking-service/track/NR1865881

Alternate API: https://seko-track-api.azurewebsites.net/track/21720895

Source Code Repository: https://bitbucket.org/sekologistics/myseko-track-api/src/develop/

CI/CD Pipelines (Azure DevOps): https://dev.azure.com/seko-na/Track API

Source SQL Query (Subject to change. See Source Code for current query details)

USE HarmonyStore
DECLARE @TypeOrderIdDomestic uniqueidentifier = 'fe2ba03d-1c5e-4475-9280-cf89b282baf3'
DECLARE @TypeOrderIdInternational uniqueidentifier = '60b8d5a0-b1fb-4817-ae38-c5b254c6b26f'

SELECT TOP 1 * FROM dbo.OrdOrder WHERE Number = @trackingNumber AND TypeOrderID IN (@TypeOrderIdDomestic, @TypeOrderIdInternational)

Per the Vendor, Here is the logic to categorize the 5 buckets at the top:

Use: "shipmentStatus" values that we look for and what step they are matched to:

Step 1: "Shipment Data Received", "Shipment Being Processed for Pickup"

Step 2: "At Pickup Terminal", "Temporary Origin Hold",

Step 3: "In Transit To Delivery Terminal", "In Transit", “In Transit- Confirmed out of Origin”

Step 4: "At Delivery Terminal", "At Delivery Terminal Delivery Appt Set", "Temporary Destination Hold", "Delivered To Warehouse", "Shipment is Out for Delivery", "On Hand DEST Delv Appt Set",

“Out for Delivery”

Step 5: "Shipment Delivered", "Picked Up From Customer", "Return Data Received", "Delivered"

to get comprehensive list of Shipment Status/Milestones from REDNA & Cargowise

Harmony Store

SELECT * FROM sekona.sekona.dbo.tblStatusMapping
SELECT * FROM odyssey.ODYSSEY_UserRepository.dbo.Client_StatusMapping
SELECT * FROM odyssey.ODYSSEY_UserRepository.dbo.Client_StatusCategory

When in doubt, look to mySEKO tracking results: https://harmony.myseko.com/Track

International Shipment:

Domestic Shipment:


  • No labels