ApprovalSolutionResponse.ReadWrite
Allows the app to read and respond to approvals on behalf of the signed-in user.
Permission Details
Read and respond to approvals assigned to the current user
Allows the app to read and respond to approvals on behalf of the signed-in user.
89d944f2-2011-44ad-830c-aa9bf5ef2319
Properties
Properties is shown from stable Microsoft Graph v1.0 metadata.
| Property | Type | Description |
|---|---|---|
id |
String |
Identifier of the approval decision. , <liIn PIM for Groups, it's the same identifier as the identifier of the assignment schedule request. |
stages |
approvalStage collection |
A collection of stages in the approval decision. |
JSON Representation
JSON representation is shown from stable Microsoft Graph v1.0 metadata.
{
"@odata.type": "#microsoft.graph.approval",
"id": "String (identifier)",
"stages": [
{
"@odata.type": "#microsoft.graph.approvalStage"
}
]
}
Relationships
Relationships is shown from stable Microsoft Graph v1.0 metadata.
| Relationship | Type | Description |
|---|---|---|
stages |
approvalStage collection |
A collection of stages in the approval decision. |
steps |
approvalStep collection |
Used to represent the decision associated with a single step in the approval process configured in approvalStage. |
Graph Methods
Microsoft Graph v1.0 endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
No API methods available for this version.
Microsoft Graph beta endpoints are mapped directly from refreshed Microsoft Learn permissions tables.
Microsoft Graph PowerShell v1.0 commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsMicrosoft Graph PowerShell beta commands are not available from refreshed Microsoft Learn PowerShell snippets for this permission.
No deterministic PowerShell command map is available for this permission.
Browse PowerShell docsCode Examples
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.Solutions.Approval.Provision.PostAsync();
const options = {
authProvider,
};
const client = Client.init(options);
await client.api('/solutions/approval/provision')
.version('beta')
.post();
Connect-MgGraph -Scopes "ApprovalSolutionResponse.ReadWrite"
Invoke-MgGraphRequest -Method GET -Uri "https://graph.microsoft.com/v1.0/solutions/approval"
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
await graph_client.solutions.approval.provision.post()
App Registration
Navigate to Azure Portal
Go to App registrations in Microsoft Entra admin center
Add API Permission
Select your app → API permissions → Add a permission → Microsoft Graph
Select Permission Type
Choose Delegated permissions and search for ApprovalSolutionResponse.ReadWrite
Grant Admin Consent
This delegated permission requires admin consent.