How to get List Item Entity Type Full Name of a SharePoint list using REST API ?


REST API to get list item Entity Type Full Name:


siteurl(AbsoluteUrl) + _api/Web/Lists/getbytitle('ListName')/ListItemEntityTypeFullName

or

 _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getbytitle('SPList')/items?select=EntityTypeFullName

**Use this above API just replacing absolute site URL and list name
**Then put this prepared URL into browser and press enter button and obtain list entity type full name of related list.
**You will get ListEntityTypeFullName like "SP.Data.EmployeeListItem"
**Employee(It is a SharePoint list name)

Comments

Popular posts from this blog

Get list item entity type full name of a SharePoint list using REST API

Get SharePoint list name by GUID

Get Current Web Logged In User of SharePoint Site in jQuery