//-- Intent: retrieve the records for the email alerts sent for job 1546897. --//
//-- This will retrieve the 1st page of 5 records. --//


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

});