Skip to content

fernandoqueue/17track.net-API-Wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

17Track API Information

How to use:

Use nuget to install:

Newtonsoft.Json

1)send up to 40 tracking number as an array of string.

2)You will get back a List with each element containing information about each tracking number

3).info element will be an array where each element is an event during the shipping process.

        var test = new string[] { "EI024511114US", "EL738178395US" };
        var updates = new Results(test).results;
        foreach (var update in updates)
            foreach (var tmp in update.info)
            {
                Console.WriteLine(tmp.Date);
                Console.WriteLine(tmp.Location);
                Console.WriteLine(tmp.Message);
                Console.WriteLine();
            }

About

C# 17track.net (private) API wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages