Call APA SharePoint
by Craig Boland
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://knockoutjs.com/downloads/knockout-3.2.0.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
JavaScript
$.ajax({
url: "https://sharepoint.alliedpilots.org/sites/committees/_api/Web/Lists/GetByTitle('Public%20Committee%20Documents')/items",
xhrFields: { withCredentials: true },
type: "GET",
headers: { Accept: "application/json;odata=verbose" },
success: function(data) { alert("Success"); },
error: function (data) { alert("Fail!"); }
});