Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Represents a suggested access package with associated suggestion reasons in Microsoft Entra entitlement management. Access packages are suggested to end users based on various criteria such as related people insights and assignment history.
Methods
| Method | Return Type | Description |
|---|---|---|
| Filter by current user | accessPackageSuggestion collection | Retrieve suggested access packages for the current end user based on various criteria including related people insights. |
Properties
| Property | Type | Description |
|---|---|---|
| id | String | The identifier of the suggested access package. Read-only. |
| reasons | Collection(accessPackageSuggestionReason) | A collection of reasons why this access package is being suggested to the user. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| accessPackage | availableAccessPackage | The access package information for the suggested package. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.accessPackageSuggestion",
"id": "String",
"reasons": [
{
"@odata.type": "microsoft.graph.accessPackageSuggestionReason"
}
],
"accessPackage": {
"@odata.type": "microsoft.graph.availableAccessPackage"
}
}