//-- Intent: retrieve a the total number of alerting campaigns between the   --//
//-- given dates of 12/1/2012 and 12/31/2012.  --//


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

});