Community Tip - You can change your system assigned username to something more personal in your community settings. X
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
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);