//-- Intent: get a list of available contact lists --//



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

});