Skip to main content

app_consent

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

Overview

Nameapp_consent
TypeResource
Identra_id.identity_governance.app_consent

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
appConsentRequestsarrayA collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users.

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,
appConsentRequests
FROM entra_id.identity_governance.app_consent
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.app_consent
SET
id = '{{ id }}',
appConsentRequests = '{{ appConsentRequests }}'
RETURNING
id,
appConsentRequests;

DELETE examples

No description available.

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