//-- Intent: retrieve the profile for the alerting campaign --//
//-- with jobcode of 1541867 --//


$.ajax({
  type: "GET",
  headers: {"SwiftAPI-Key": "12345"},
  contentType: "application/json; charset=utf-8",
  url: "http://api.v4.swiftreach.com/api/Alerts/1541867",
  dataType: "json"
  success: function(result) {
        // Do something with the result
    }

});