//-- Intent: gets the total number of contacts in the contact list with ListCode 123456 --//
//--	where the EntityName is like Bob. --//


$.ajax({
  type: "GET",
  headers: {"SwiftAPI-Key": "12345"},
  contentType: "application/json; charset=utf-8",
  url: "http://api.v4.swiftreach.com/api/ContactLists/Contacts/Search/Count/123456/EntityName/Bob",
  dataType: "json"
  success: function(result) {
        // Do something with the result
    }

});

<!-- example return value -->
1