//-- Intent: List all available hotlines and their configurations. --//

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

});