Hey everyone, I am new to adobe campaign. I am trying to call an api within a javascript code icon. I am getting stuck when I try something like this var xhttp = new XMLHttpRequest(); Do I have to load the library in?
Views
Replies
Total Likes
I forgot to mention that the error I get is, XMLHttpRequest is not defined.
Views
Replies
Total Likes
Hi,
Without further info, I cannot help in detail but here is an example that may get you moving if you want to call an api within a javascript activity in a workflow.
//Make web service call for each email address, licence key is set here
var http = new HttpClientRequest("APIURL");
http.connect();
http.execute();
http.dispose();
http.disconnect();
Let me know if you need more help.
Dan
Views
Replies
Total Likes
Wow thank you very much! This helped me call the api!
Views
Replies
Total Likes
Quick Question, Do you happen to know if there is a library to read the XML when I call the api? I tried using DOMParser but the library does not exist.
Views
Replies
Total Likes
Did you manage to solve this?
Views
Replies
Total Likes