oAuth2PermissionGrant resource type

Namespace: microsoft.graph

Represents the delegated permissions that have been granted to an application's service principal.

Delegated permissions grants can be created as a result of a user consenting an application's request to access an API, or created directly.

Delegated permissions are sometimes referred to as "OAuth 2.0 scopes" or "scopes".

Methods

Method Return Type Description
List oAuth2PermissionGrants oAuth2PermissionGrant collection Retrieve a list of delegated permission grants.
Get oAuth2PermissionGrant oAuth2PermissionGrant Read a single delegated permission grant.
Create oAuth2PermissionGrant oAuth2PermissionGrant Create a delegated permission grant.
Update oAuth2PermissionGrant None Update oAuth2PermissionGrant object.
Delete oAuth2PermissionGrant None Delete a delegated permission grant.
Get delta oAuth2PermissionGrant Get newly created, updated, or deleted oauth2permissiongrant objects without performing a full read of the entire resource collection.

Properties

Property Type Description
clientId String The object id (not appId) of the client service principal for the application which is authorized to act on behalf of a signed-in user when accessing an API. Required. Supports $filter (eq only).
consentType String Indicates 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. Non-admin users may be authorized to consent on behalf of themselves in some cases, for some delegated permissions. Required. Supports $filter (eq only).
id String Unique identifier for the oAuth2PermissionGrant. Read-only.
principalId String The 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).
resourceId String The id of the resource service principal to which access is authorized. This identifies the API which the client is authorized to attempt to call on behalf of a signed-in user. Supports $filter (eq only).
scope String A space-separated list of the claim values for delegated permissions which 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 3850 characters in length.

Relationships

None.

This resource supports using delta query to track incremental additions, deletions, and updates, by providing a delta function.

JSON representation

The following is a JSON representation of the resource.

{
  "clientId": "string",
  "consentType": "string",
  "id": "string (identifier)",
  "principalId": "string",
  "resourceId": "string",
  "scope": "string"
}