Get-AzureADServicePrincipalOAuth2PermissionGrant
Gets an oAuth2PermissionGrant object.
Syntax
Get-AzureADServicePrincipalOAuth2PermissionGrant
-ObjectId <String>
[-All <Boolean>]
[-Top <Int32>]
[<CommonParameters>]
Description
The Get-AzureADServicePrincipalOAuth2PermissionGrant cmdlet gets an oAuth2PermissionGrant object for a service principal in Azure Active Directory (AD).
Examples
Example 1: Retrieve the OAuth2 permission grants of a service principal
PS C:\> ServicePrincipalId = (Get-AzureADServicePrincipal -Top 1).ObjectId
PS C:\> Get-AzureADServicePrincipalOAuth2PermissionGrant -ObjectId $ServicePrincipalId
The first command gets the ID of a service principal by using the Get-AzureADServicePrincipal cmdlet. The command stores the ID in the $ServicePrincipalId variable.
The second command gets the OAuth2 permission grants of a service principal identified by $ServicePrincipalId.
Parameters
If true, return all permission grants. If false, return the number of objects specified by the Top parameter
| Type: | Boolean |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the ID of a service principal in Azure AD.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the maximum number of records to return.
| Type: | Int32 |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |