terms_of_use
Creates, updates, deletes, gets or lists a terms_of_use resource.
Overview
| Name | terms_of_use |
| Type | Resource |
| Id | entra_id.identity_governance.terms_of_use |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
agreementAcceptances | array | Represents the current status of a user's response to a company's customizable terms of use agreement. |
agreements | array | Represents 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | |||
update | update | |||
delete | delete | If-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.
| Name | Datatype | Description |
|---|---|---|
If-Match | string | ETag |
SELECT examples
- get
Retrieved navigation property
SELECT
id,
agreementAcceptances,
agreements
FROM entra_id.identity_governance.terms_of_use
;
UPDATE examples
- update
No description available.
UPDATE entra_id.identity_governance.terms_of_use
SET
id = '{{ id }}',
agreementAcceptances = '{{ agreementAcceptances }}',
agreements = '{{ agreements }}'
RETURNING
id,
agreementAcceptances,
agreements;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity_governance.terms_of_use
WHERE If-Match = '{{ If-Match }}'
;