SharePoint REST API
You can use below REST API to retrive diffrent details from sharepoint site,list and libraries,user and group inforamtion. Click Here to know more details about CRUD operations with REST API in SharePoint. URL Description /_api/web/lists/getbytitle('listname')/Items?$select=* Returns SharePoint list items with all columns data /_api/web/lists/getbytitle('listname')/Items?$select=ID,Title Returns SharePoint list items with all columns ID and Title /_api/web/Lists(guid'"+guid+"')/items Returns list item from sharepoint list GUID /_api/web/lists/getbytitle('listName')/ItemCount Returns SharePoint list items count /_api/web/lists/getbytitle('listname')/items(1) Returns SharePoint list items having ID equals to 1 /_api/web/lists/getbytitle('listname')/Items?$select=Title&$filter=Title eq 'Test1' Returns SharePoint list items havi...