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 3 Next »

Hosted by 3rd Party: Marcel Digital

www.marceldigital.com

Jeff Belasco / Project Manager / jbelasco@marceldigital.com

Casey Jordan/ Website Developer /  cjordan@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

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

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)


  • No labels