The example in this topic show how to use REST API to Get List Item By Id in SharePoint
- REST-API is based on OData (Open Data) Protocol and hence it doesn't
require any dll or JS library to run the commands on the SharePoint objects.
- REST-API calls require proper end-point URL and proper
Header implementation in your REST call.
How to use SharePoint REST API?
- function GetListItemById() {
- // Specify the Id of the Item that you want to fetch
- var Itemid = 1;
-
- $.ajax
- ({
- // _spPageContextInfo.webAbsoluteUrl - will give
absolute URL of the site where you are running the code.
- // You can replace this with other site URL where you
want to apply the function
-
- // "$select" can be used, if only a defined
colmns need to be returned in result set
-
url: _spPageContextInfo.webAbsoluteUrl + "/_api/web/lists/getByTitle('List
Name')/items(" + Itemid + ")?$select=Id,Description,New_x0020_Column",
-
method: "GET",
-
headers:
- {
- //
Accept header: Specifies the format for response data from the server.
- "Accept":
"application/json;odata=verbose"
- },
-
success: function (data, status, xhr) {
-
var dataresults = data.d;
- console.log("ID- " + dataresults.Id + " | " + dataresults.Description + " | " + dataresults.New_x0020_Column);
-
},
-
error: function (xhr, status, error) {
-
console.log("Failed");
- }
- });
- }
Thank you for reading this article. This code was tested in SharePoint 2013