//-- Intent: retrieve a list of alerting campaigns between the  --//
//-- given dates of 12/1/2012 and 12/31/2012. This will return --//
//-- the first set of 5 results. (Page 1 with 5 rows per page) --//

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

});