Actually I tired to send headers but am not able to do
var data = new FormData();
data.append("email", "flycodersonesignal@gmail.com");
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === 4) {
console.log(this.responseText);
}
});
xhr.open("POST", "http://mydomain.ca/helpify/api/password/create");
xhr.setRequestHeader("Content-Type", "application/json");
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
xhr.send(data);
}