directSharingAbilities resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Represents the direct sharing abilities.
Properties
Property | Type | Description |
---|---|---|
addExistingExternalUsers | sharingOperationStatus | Indicates whether the current user can add existing guest recipients to this item using direct sharing. |
addInternalUsers | sharingOperationStatus | Indicates whether the current user can add internal recipients to this item using direct sharing. |
addNewExternalUsers | sharingOperationStatus | Indicates whether the current user can add new guest recipients to this item using direct sharing. |
requestGrantAccess | sharingOperationStatus | Indicates whether the user querying this endpoint can request access for the user or on behalf of other users, after which, site admins, can approve or deny the creation of a potential sharing link. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.directSharingAbilities",
"requestGrantAccess": {
"@odata.type": "microsoft.graph.sharingOperationStatus"
},
"addNewExternalUsers": {
"@odata.type": "microsoft.graph.sharingOperationStatus"
},
"addExistingExternalUsers": {
"@odata.type": "microsoft.graph.sharingOperationStatus"
},
"addInternalUsers": {
"@odata.type": "microsoft.graph.sharingOperationStatus"
}
}