Skip to main content

app_consent_app_consent_requests

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

Overview

Nameapp_consent_app_consent_requests
TypeResource
Identra_id.identity_governance.app_consent_app_consent_requests

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
appDisplayNamestringThe display name of the app for which consent is requested. Required. Supports $filter (eq only) and $orderby.
appIdstringThe identifier of the application. Required. Supports $filter (eq only) and $orderby.
pendingScopesarrayA list of pending scopes waiting for approval. Required.
userConsentRequestsarrayA list of pending user consent requests. Supports $filter (eq).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectapp_consent_request_idRead the properties and relationships of an appConsentRequest object.
listselectRetrieve appConsentRequest objects and their properties.
insertinsert
updateupdateapp_consent_request_id
deletedeleteapp_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

Read the properties and relationships of an appConsentRequest object.

SELECT
id,
appDisplayName,
appId,
pendingScopes,
userConsentRequests
FROM entra_id.identity_governance.app_consent_app_consent_requests
WHERE app_consent_request_id = '{{ app_consent_request_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity_governance.app_consent_app_consent_requests (
id,
appDisplayName,
appId,
pendingScopes,
userConsentRequests
)
SELECT
'{{ id }}',
'{{ appDisplayName }}',
'{{ appId }}',
'{{ pendingScopes }}',
'{{ userConsentRequests }}'
RETURNING
id,
appDisplayName,
appId,
pendingScopes,
userConsentRequests
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.app_consent_app_consent_requests
SET
id = '{{ id }}',
appDisplayName = '{{ appDisplayName }}',
appId = '{{ appId }}',
pendingScopes = '{{ pendingScopes }}',
userConsentRequests = '{{ userConsentRequests }}'
WHERE
app_consent_request_id = '{{ app_consent_request_id }}' --required
RETURNING
id,
appDisplayName,
appId,
pendingScopes,
userConsentRequests;

DELETE examples

No description available.

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