//-- Intent: retrieve the records for the voice link alerts sent for job 1546957. --//
//-- This will retrieve the 1st page of 5 records sorted by BeginStamp --//
//-- in an Ascending direction. --//



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

});