Skip to main content

access_reviews

Creates, updates, deletes, gets or lists an access_reviews resource.

Overview

Nameaccess_reviews
TypeResource
Identra_id.identity_governance.access_reviews

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
definitionsarrayRepresents the template and scheduling for an access review.
historyDefinitionsarrayRepresents a collection of access review history data and the scopes used to collect that data.

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,
definitions,
historyDefinitions
FROM entra_id.identity_governance.access_reviews
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.access_reviews
SET
id = '{{ id }}',
definitions = '{{ definitions }}',
historyDefinitions = '{{ historyDefinitions }}'
RETURNING
id,
definitions,
historyDefinitions;

DELETE examples

No description available.

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