cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

Integration with delivery companies like DHL, FEDEX or UPS

DenisSimonneau
6-Contributor

Integration with delivery companies like DHL, FEDEX or UPS

Hello,

A prospect would like to integrate tracking information from delivery companies such as DHL, FEDEX or UPS.

Does someone already did such integration or has investigate how we could do it ?

Thanks in advance for your help

regards

Denis

1 REPLY 1

As long as the delivery company has an API then you can use the ContentLoaderFunctions to get data

Information on DHLs API DHL API | ProgrammableWeb

This code snippet uses the API | Weather Underground to get the current conditions.

var url = "http://api.wunderground.com/api/" +  <API_KEY> + "/conditions/q/UK/London.json";

var params = {

        url : url,

        timeout : 60

};

var rssFeed = Resources["ContentLoaderFunctions"].GetJSON(params);

Top Tags