Skip to main content
5-Regular Member
June 24, 2015
Question

Integration with delivery companies like DHL, FEDEX or UPS

  • June 24, 2015
  • 1 reply
  • 1217 views

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-Visitor
    June 24, 2015

    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);