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
| Name | app_consent_app_consent_requests_user_consent_requests_approval |
| Type | Resource |
| Id | entra_id.identity_governance.app_consent_app_consent_requests_user_consent_requests_approval |
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. |
stages | array | A collection of stages in the approval decision. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | app_consent_request_id, user_consent_request_id | Approval decisions associated with a request. | |
update | update | app_consent_request_id, user_consent_request_id | ||
delete | delete | app_consent_request_id, user_consent_request_id | 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 |
|---|---|---|
app_consent_request_id | string | The unique identifier of appConsentRequest |
user_consent_request_id | string | The unique identifier of userConsentRequest |
If-Match | string | ETag |
SELECT examples
- get
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
- update
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
- delete
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 }}'
;