Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 2.22 KB

File metadata and controls

54 lines (44 loc) · 2.22 KB
title sharingLinkVariants resource type
description Represents the status of potential sharing link variants. The variants generate a separate sharing link from the link that would otherwise be generated, but with identical role and scope..
author ziebd
ms.localizationpriority medium
ms.subservice sharepoint
doc_type resourcePageType
ms.date 05/04/2024

sharingLinkVariants resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the status of potential sharing link variants. The variants generate a separate sharing link from the link that would otherwise be generated, but with identical role and scope.

Properties

Property Type Description
addressBarLinkPermission sharingRole Indicates the most permissive role with which an address bar link can be created. The possible values are: none, view, edit, manageList, review, restrictedView, submitOnly, unknownFutureValue.
allowEmbed sharingOperationStatus Indicates whether a link can be embedded.
passwordProtected sharingOperationStatus Indicates whether a link can be password protected, meaning that link users would need to enter a password to access the item for which the sharing link is produced. Creating a passwordProtected link for the first time requires providing a password.
requiresAuthentication sharingOperationStatus Indicates whether a link requires identity authentication for recipients. Users can be verified through either an email address or identity.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.sharingLinkVariants",
  "passwordProtected": {
    "@odata.type": "microsoft.graph.sharingOperationStatus"
  },
  "requiresAuthentication": {
    "@odata.type": "microsoft.graph.sharingOperationStatus"
  },
  "addressBarLinkPermission": "String",
  "allowEmbed": {
    "@odata.type": "microsoft.graph.sharingOperationStatus"
  }
}