Interface ISharePointIdentity
This resource extends from the identity resource to provide the ability to expose SharePoint-specific information; for example, loginName or SharePoint IDs.
public interface ISharePointIdentity
Properties
DisplayName
The identity's display name. Note that this might not always be available or up to date. For example, if a user changes their display name, the API may show the new value in a future response, but the items associated with the user won't show up as having changed when using delta.
string DisplayName { get; }
Property Value
The email of the SharePoint identity.
string Email { get; }
Property Value
Id
Unique identifier for the identity. It can be either an Azure Active Directory ID or a SharePoint ID.
string Id { get; }
Property Value
LoginName
The sign in name of the SharePoint identity.
string LoginName { get; }