//-- Intent: count of search results for the records with phone number 2012361344 for calls into  --//
//-- the hotline (866) 802-0837 sent between 3/1/2013 and 3/31/2013. --//
//-- 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/Hotlines/Reports/Search/8668020837/3-1-2013/3-31-2013/1/5/CallerID/2012361344",
  dataType: "json"
  success: function(result) {
        // Do something with the result
    }

});