| title | Create accessPackageCatalog |
|---|---|
| description | Create a new accessPackageCatalog object. |
| ms.localizationpriority | medium |
| author | markwahl-msft |
| ms.subservice | entra-id-governance |
| doc_type | apiPageType |
| ms.date | 11/11/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Create a new accessPackageCatalog object.
[!INCLUDE national-cloud-support]
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.
[!INCLUDE permissions-table]
[!INCLUDE rbac-entitlement-catalog-creator-write]
POST /identityGovernance/entitlementManagement/accessPackageCatalogs| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
| Content-Type | application/json |
In the request body, supply a JSON representation of an accessPackageCatalog object. Include the displayname, description, and isExternallyVisible properties.
If successful, this method returns a 200-series response code and a new accessPackageCatalog object in the response body.
The following example shows a request.
POST https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageCatalogs
Content-type: application/json
{
"displayName": "sales",
"description": "for employees working with sales and outside sales partners",
"isExternallyVisible": true
}[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
Note: The response object shown here might be shortened for readability.
HTTP/1.1 201 Created
Content-type: application/json
{
"id": "cc30dc98-6d3c-4fa0-bed8-fd76d0efd993",
"displayName": "sales",
"description": "for employees working with sales and outside sales partners",
"catalogType": "UserManaged",
"catalogStatus": "Published",
"isExternallyVisible": true
}