accessPackageAssignment: additionalAccess
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
In Microsoft Entra Entitlement Management, retrieve a collection of accessPackageAssignment objects that indicate a target user has an assignment to a specified access package and also an assignment to another, potentially incompatible, access package. It can be used to prepare to configure the incompatible access packages for a specific access package.
This API is available in the following national cloud deployments.
Global service | US Government L4 | US Government L5 (DOD) | China operated by 21Vianet |
---|---|---|---|
✅ | ✅ | ✅ | ❌ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type | Least privileged permissions | Higher privileged permissions |
---|---|---|
Delegated (work or school account) | EntitlementManagement.Read.All | EntitlementManagement.ReadWrite.All |
Delegated (personal Microsoft account) | Not supported. | Not supported. |
Application | Not supported. | Not supported. |
Tip
In delegated scenarios with work or school accounts, the signed-in user must also be assigned an administrator role with supported role permissions through one of the following options:
- A role in the Entitlement Management system where the least privileged roles are:
- Catalog reader. This is the least privileged option
- Catalog creator
- Access package manager
- More privileged Microsoft Entra roles supported for this operation:
- Security Reader
- Global Reader
- Compliance Administrator
- Security Administrator
- Identity Governance Administrator
In app-only scenarios, the calling app can be assigned one of the preceding supported roles instead of the EntitlementManagement.Read.All
application permission. The Catalog reader role is less privileged than the EntitlementManagement.Read.All
application permission.
For more information, see Delegation and roles in entitlement management and how to delegate access governance to access package managers in entitlement management.
HTTP request
GET /identityGovernance/entitlementManagement/accessPackageAssignments/additionalAccess(accessPackageId='parameterValue',incompatibleAccessPackageId='parameterValue')
Function parameters
The following table shows the parameters that must be supplied with this function. The two access package IDs must be distinct.
Parameter | Type | Description |
---|---|---|
accessPackageId | String | Indicates the ID of an access package for which the caller would like to retrieve the assignments. Required. |
incompatibleAccessPackageId | String | The specific incompatible access package for which the caller would like to retrieve only those assignments where the user also has an assignment to this incompatible access package. Required. |
Optional query parameters
This method supports the $select
, $filter
, and $expand
OData query parameters to help customize the response. For general information, see OData query parameters.
Request headers
Name | Description |
---|---|
Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Request body
Don't supply a request body for this method.
Response
If successful, this method returns a 200 OK
response code and a collection of accessPackageAssignment objects in the response body.
When a result set spans multiple pages, Microsoft Graph returns that page with an @odata.nextLink
property in the response that contains a URL to the next page of results. If that property is present, continue making more requests with the @odata.nextLink
URL in each response, until all the results are returned. For more information, see paging Microsoft Graph data in your app.
Examples
The following example gets the access package assignments for users who have assignments to both access packages.
Request
The following example shows a request.
GET https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageAssignments/additionalAccess(accessPackageId='2506aef1-3929-4d24-a61e-7c8b83d95e6f',incompatibleAccessPackageId='d5d99728-8c0b-4ede-83d2-cf9b0e8dabfb')?$expand=target
Response
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 200 OK
Content-Type: application/json
{
"value": [
{
"@odata.type": "#microsoft.graph.accessPackageAssignment",
"id": "a61f7889-ae61-4e97-a4dc-e4fa525f5b33",
"catalogId": "beedadfe-01d5-4025-910b-84abb9369997",
"accessPackageId": "2506aef1-3929-4d24-a61e-7c8b83d95e6f",
"assignmentPolicyId": "07c7c99d-6cf3-4527-bd05-5fc2ac8e96e7",
"targetId": "cdbdf152-82ce-479c-b5b8-df90f561d5c7",
"target": {
"id": "ebaf071e-c647-42c6-b86f-fbe3625b4b63",
"objectId": "cdbdf152-82ce-479c-b5b8-df90f561d5c7",
"displayName": "user1"
}
},
{
"@odata.type": "#microsoft.graph.accessPackageAssignment",
"id": "a7284263-8233-44de-8095-0ee3ff5a1716",
"catalogId": "beedadfe-01d5-4025-910b-84abb9369997",
"accessPackageId": "2506aef1-3929-4d24-a61e-7c8b83d95e6f",
"assignmentPolicyId": "07c7c99d-6cf3-4527-bd05-5fc2ac8e96e7",
"targetId": "79a8f0b6-61dc-41db-b49e-470c278e05b6",
"target": {
"id": "9865b0f8-868f-42c6-a49b-3067eb4b2da1",
"objectId": "79a8f0b6-61dc-41db-b49e-470c278e05b6",
"displayName": "user2"
}
}
]
}