Skip to main content
karanv22355550
New Participant
March 12, 2018
Question

Loading XMLHttpRequest Library

  • March 12, 2018
  • 5 replies
  • 7259 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

jonase_2
New Participant
April 2, 2020

Did you manage to solve this?

karanv22355550
New Participant
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.

karanv22355550
New Participant
March 16, 2018

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

New Participant
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
New Participant
March 12, 2018

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