Skip to main content

terms_of_use

Creates, updates, deletes, gets or lists a terms_of_use resource.

Overview

Nameterms_of_use
TypeResource
Identra_id.identity_governance.terms_of_use

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
agreementAcceptancesarrayRepresents the current status of a user's response to a company's customizable terms of use agreement.
agreementsarrayRepresents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselect
updateupdate
deletedeleteIf-Match

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
agreementAcceptances,
agreements
FROM entra_id.identity_governance.terms_of_use
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.terms_of_use
SET
id = '{{ id }}',
agreementAcceptances = '{{ agreementAcceptances }}',
agreements = '{{ agreements }}'
RETURNING
id,
agreementAcceptances,
agreements;

DELETE examples

No description available.

DELETE FROM entra_id.identity_governance.terms_of_use
WHERE If-Match = '{{ If-Match }}'
;