Loading XMLHttpRequest Library | Community
Skip to main content
karanv22355550
Level 2
March 12, 2018
Question

Loading XMLHttpRequest Library

  • March 12, 2018
  • 5 replies
  • 7262 views

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?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

5 replies

karanv22355550
Level 2
March 12, 2018

I forgot to mention that the error I get is, XMLHttpRequest is not defined.

Level 2
March 13, 2018

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

karanv22355550
Level 2
March 16, 2018

Wow thank you very much! This helped me call the api!

karanv22355550
Level 2
March 16, 2018

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.

jonase_2
April 2, 2020

Did you manage to solve this?