---
title: "Get Permission Group"
method: GET
path: "/v1/permissions/{permissionGroupId}"
tags: ["Permission Groups"]
---

# Get Permission Group

`GET /v1/permissions/{permissionGroupId}`

This endpoint returns the metadata of a Permission Group 
identified by the `permissionGroupId`.

## Path parameters

- `permissionGroupId` integer, required

## Response `200`

When everything is ok, the permission group data returned.

- PermissionGroupModel
  - `permissionGroupId` integer, required — Identifier of the Permission Group.
  - `name` string, required — Name of the Permission Group.
  - `canManageMembers` boolean, required — Group members can manage team members.
  - `canCreateOrUpdateConfig` boolean, required — Group members can create/update Configs.
  - `canDeleteConfig` boolean, required — Group members can delete Configs.
  - `canCreateOrUpdateEnvironment` boolean, required — Group members can create/update Environments.
  - `canDeleteEnvironment` boolean, required — Group members can delete Environments.
  - `canCreateOrUpdateSetting` boolean, required — Group members can create/update Feature Flags and Settings.
  - `canTagSetting` boolean, required — Group members can attach/detach Tags to Feature Flags and Settings.
  - `canDeleteSetting` boolean, required — Group members can delete Feature Flags and Settings.
  - `canCreateOrUpdateTag` boolean, required — Group members can create/update Tags.
  - `canDeleteTag` boolean, required — Group members can delete Tags.
  - `canManageWebhook` boolean, required — Group members can create/update/delete Webhooks.
  - `canUseExportImport` boolean, required — Group members can use the export/import feature.
  - `canManageProductPreferences` boolean, required — Group members can update Product preferences.
  - `canManageIntegrations` boolean, required — Group members can add and configure integrations.
  - `canViewSdkKey` boolean, required — Group members has access to SDK keys.
  - `canRotateSdkKey` boolean, required — Group members can rotate SDK keys.
  - `canCreateOrUpdateSegments` boolean, required — Group members can create/update Segments.
  - `canDeleteSegments` boolean, required — Group members can delete Segments.
  - `canViewProductAuditLog` boolean, required — Group members has access to audit logs.
  - `canViewProductStatistics` boolean, required — Group members has access to product statistics.
  - `canDisable2FA` boolean, required — Group members can disable two-factor authentication for other members.
  - `accessType` 'readOnly' | 'full' | 'custom', required — Represent the Feature Management permission.
  - `newEnvironmentAccessType` 'full' | 'readOnly' | 'none', required — Represent the environment specific Feature Management permission.
  - `environmentAccesses` PermissionGroupEnvironmentAccessModel[], required — List of environment specific permissions.
    - `environmentId` string, uuid, required — Identifier of the Environment.
    - `name` string, required — Name of the Environment.
    - `color` string, nullable, required — Color of the Environment.
    - `description` string, nullable, required — Description of the Environment.
    - `order` integer, required — The order of the Environment represented on the ConfigCat Dashboard.
    - `reasonRequired` boolean, required — Determines whether a mandatory reason must be given every time when the Feature Flags or Settings in the given Environment are saved.
    - `approveRequired` boolean, required — Determines whether changes must be approved before they are applied in the given Environment.
    - `environmentAccessType` 'full' | 'readOnly' | 'none', required — Represent the environment specific Feature Management permission.
  - `product` ProductModel, required — Details of the Product.
    - `organization` OrganizationModel, required — Details of the Organization.
      - `organizationId` string, uuid, required — Identifier of the Organization.
      - `name` string, required — Name of the Organization.
    - `productId` string, uuid, required — Identifier of the Product.
    - `name` string, required — Name of the Product.
    - `description` string, nullable, required — Description of the Product.
    - `order` integer, required — The order of the Product represented on the ConfigCat Dashboard. Determined from an ascending sequence of integers.
    - `reasonRequired` boolean, required — Determines whether a mandatory reason must be given every time when the Feature Flags or Settings within a Product are saved.
    - `approveRequired` boolean, required — Determines whether changes must be approved before they are applied within a Product.
  - `approvalPermissionType` 'cannotApprove' | 'canApproveOthers' | 'canBypassApproval' | 'custom', required — Represents the permission group level change request approval permission.
  - `newEnvironmentApprovalPermissionType` 'cannotApprove' | 'canApproveOthers' | 'canBypassApproval', required — Represents the environment specific change request approval permission.
  - `environmentApprovalPermissions` PermissionGroupEnvironmentApprovalPermissionModel[], required — List of environment specific approval permissions.
    - `environmentId` string, uuid, required — Identifier of the Environment.
    - `environmentApprovalPermissionType` 'cannotApprove' | 'canApproveOthers' | 'canBypassApproval', required — Represents the environment specific change request approval permission.

## Other responses

- `400` — Bad request.
- `404` — Not found.
- `429` — Too many requests. In case of the request rate exceeds the rate limits.

---

[API](https://skmtc.net/configcat/apis/configcat-public-management-api.md) · [All operations](https://skmtc.net/configcat/apis/configcat-public-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/configcat/configcat-public-management-api/versions/6b4d53bc1455/schema)
