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
Post a Comment