Some Important SharePoint REST API related to SharePoint list.
Some Important SharePoint REST API related to SharePoint list. Get all lists of Current SP Site = https://{siteurl}/_api/web/lists //CRUD list. // siteurl may be like https://mycompany.sharepoint.com/sites/teamsite REST API to get field by field name = https://{siteurl}/_api/web/lists/getbytitle('Projects')/fields/getbytitle('Status') GET SP list meta Data = https://{siteurl}/_api/web/lists/getbytitle('SP List Name') GET Fields/column of SP list = https://{siteurl}/_api/web/lists/getbytitle('" + listName + "')/fields GET SP list fields with filter = https://{siteurl} /_api/web/lists/getbytitle('SP List Name')/fields?$filter=Title%20eq%20%'Email' Get GUID of List = https://{siteurl}/_api/web/lists/getbytitle('SP List Name')/Id Get GUID of List EntityTypefullName = https://{siteurl}/_api/web/lists/ge...