• Home
  • Manage
  • Access control
  • User management and SSO
  • Dynatrace for Government SAML federation
  • Dynatrace for Government API - Group permissions
  • Get group permissions

Get group permissions

Use GET /v2/accounts/{account-uuid}/groups/{group-uuid}/permissions to fetch the permissions of a user group.

Endpoint

/v2/accounts/{account-uuid}/groups/{group-uuid}/permissions

Parameters

ParameterTypeDescriptionInRequired
account-uuidstring-pathrequired
group-uuidstring-pathrequired

Response

Response codes

CodeTypeDescription
200RestGroupWithPermissions

Account group with permission

400ExceptionMessage

Invalid account or group name parameter

404ExceptionMessage

Account group with permission can not be found by account and group name

Response body objects

The RestGroupWithPermissions object

ElementTypeDescription
uuidstring-
namestring-
ownerstring-
descriptionstring-
federatedAttributeValuesstring[]-
createdAtstring-
updatedAtstring-
permissionsRestPermissionWithScope[]-

The RestPermissionWithScope object

ElementTypeDescription
permissionNamestring-
scopestring-
scopeTypestring-
createdAtstring-
updatedAtstring-

Response body JSON model

json
{ "uuid": "string", "name": "string", "owner": "string", "description": "string", "federatedAttributeValues": [ "string" ], "createdAt": "string", "updatedAt": "string", "permissions": [ { "permissionName": "string", "scope": "string", "scopeType": "string", "createdAt": "string", "updatedAt": "string" } ] }