conditionalAccessTemplate 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 a Microsoft recommended template of best practice configurations for Microsoft Entra conditional access policies.

Inherits from entity.

Methods

Method Return type Description
List conditionalAccessTemplates conditionalAccessTemplate collection Get a list of the conditionalAccessTemplate objects and their properties.
Get conditionalAccessTemplate conditionalAccessTemplate Read the properties and relationships of a conditionalAccessTemplate object.

Properties

Property Type Description
description String The user-friendly name of the template.
details conditionalAccessPolicyDetail Complete list of policy details specific to the template. This property contains the JSON of policy settings for configuring a Conditional Access policy.
id String Immutable ID of a template. Inherited from entity.
name String The user-friendly name of the template.
scenarios templateScenarios List of conditional access scenarios that the template is recommended for. The possible values are: new, secureFoundation, zeroTrust, remoteWork, protectAdmins, emergingThreats, unknownFutureValue. This is a multi-valued enum. Supports $filter (has).

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.conditionalAccessTemplate",
  "id": "String (identifier)",
  "name": "String",
  "description": "String",
  "scenarios": "String",
  "details": {
    "@odata.type": "microsoft.graph.conditionalAccessPolicyDetail"
  }
}