i have to pass header information while posting a url and want to pass raw data in the url can any on help me on this
i have tried
function test(){
    alert("test");
        $.ajax({
            type:"POST",
            beforeSend: function (request)
            {
                request.setRequestHeader("X-APIKEY", "y5q9q1at8u-1uf4bao2yq-bsjdj3gh1g-u9ymh1t2f8-tt85pn4r50");
            },
            url: "https://backoffice.hostcontrol.com/api/v1/domain-is",
            data: {"domain": "mahrosh.com"},
            processData: false,
            success: function(msg) {
                alert(msg);
                $("#results").append("The result =" + StringifyPretty(msg));
            }
    });
}
its not returning me results
 
     
    