termsAndConditionsAssignment resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

A termsAndConditionsAssignment entity represents the assignment of a given Terms and Conditions (T&C) policy to a given group. Users in the group will be required to accept the terms in order to have devices enrolled into Intune.

Methods

Method Return Type Description
List termsAndConditionsAssignments termsAndConditionsAssignment collection List properties and relationships of the termsAndConditionsAssignment objects.
Get termsAndConditionsAssignment termsAndConditionsAssignment Read properties and relationships of the termsAndConditionsAssignment object.
Create termsAndConditionsAssignment termsAndConditionsAssignment Create a new termsAndConditionsAssignment object.
Delete termsAndConditionsAssignment None Deletes a termsAndConditionsAssignment.
Update termsAndConditionsAssignment termsAndConditionsAssignment Update the properties of a termsAndConditionsAssignment object.

Properties

Property Type Description
id String Unique identifier of the entity.
target deviceAndAppManagementAssignmentTarget Assignment target that the T&C policy is assigned to.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.termsAndConditionsAssignment",
  "id": "String (identifier)",
  "target": {
    "@odata.type": "microsoft.graph.scopeTagGroupAssignmentTarget",
    "deviceAndAppManagementAssignmentFilterId": "String",
    "deviceAndAppManagementAssignmentFilterType": "String",
    "targetType": "String",
    "entraObjectId": "String"
  }
}