Skip to main content

oauth2_permission_grants

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

Overview

Nameoauth2_permission_grants
TypeResource
Identra_id.users.oauth2_permission_grants

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
clientIdstringThe object id (not appId) of the client service principal for the application that's authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
consentTypestringIndicates if authorization is granted for the client application to impersonate all users or only a specific user. AllPrincipals indicates authorization to impersonate all users. Principal indicates authorization to impersonate a specific user. Consent on behalf of all users can be granted by an administrator. Nonadmin users might be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
principalIdstringThe id of the user on behalf of whom the client is authorized to access the resource, when consentType is Principal. If consentType is AllPrincipals this value is null. Required when consentType is Principal. Supports $filter (eq only).
resourceIdstringThe id of the resource service principal to which access is authorized. This identifies the API that the client is authorized to attempt to call on behalf of a signed-in user. Supports $filter (eq only).
scopestringA space-separated list of the claim values for delegated permissions that should be included in access tokens for the resource application (the API). For example, openid User.Read GroupMember.Read.All. Each claim value should match the value field of one of the delegated permissions defined by the API, listed in the oauth2PermissionScopes property of the resource service principal. Must not exceed 3,850 characters in length.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id, o_auth2_permission_grant_id
listselectuser_idRetrieve a list of oAuth2PermissionGrant entities, which represent delegated permissions granted to enable a client application to access an API on behalf of the user.

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
o_auth2_permission_grant_idstringThe unique identifier of oAuth2PermissionGrant
user_idstringThe unique identifier of user

SELECT examples

Retrieved navigation property

SELECT
id,
clientId,
consentType,
principalId,
resourceId,
scope
FROM entra_id.users.oauth2_permission_grants
WHERE user_id = '{{ user_id }}' -- required
AND o_auth2_permission_grant_id = '{{ o_auth2_permission_grant_id }}' -- required
;