Skip to main content

app_consent_app_consent_requests_user_consent_requests_approval

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

Overview

Nameapp_consent_app_consent_requests_user_consent_requests_approval
TypeResource
Identra_id.identity_governance.app_consent_app_consent_requests_user_consent_requests_approval

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
stagesarrayA collection of stages in the approval decision.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectapp_consent_request_id, user_consent_request_idApproval decisions associated with a request.
updateupdateapp_consent_request_id, user_consent_request_id
deletedeleteapp_consent_request_id, user_consent_request_idIf-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

Approval decisions associated with a request.

SELECT
id,
stages
FROM entra_id.identity_governance.app_consent_app_consent_requests_user_consent_requests_approval
WHERE app_consent_request_id = '{{ app_consent_request_id }}' -- required
AND user_consent_request_id = '{{ user_consent_request_id }}' -- required
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.app_consent_app_consent_requests_user_consent_requests_approval
SET
id = '{{ id }}',
stages = '{{ stages }}'
WHERE
app_consent_request_id = '{{ app_consent_request_id }}' --required
AND user_consent_request_id = '{{ user_consent_request_id }}' --required
RETURNING
id,
stages;

DELETE examples

No description available.

DELETE FROM entra_id.identity_governance.app_consent_app_consent_requests_user_consent_requests_approval
WHERE app_consent_request_id = '{{ app_consent_request_id }}' --required
AND user_consent_request_id = '{{ user_consent_request_id }}' --required
AND If-Match = '{{ If-Match }}'
;