• Home
  • How to use Dynatrace
  • User management and SSO
  • Dynatrace for Government SAML federation
  • Dynatrace for Government API - Groups
  • List all groups

List all groups

Use GET /v2/accounts/{account-uuid}/groups to list all user groups.

Endpoint

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

Parameters

ParameterTypeDescriptionInRequired
account-uuidstring-pathrequired
groupNamestring-queryoptional
groupOwnerstring-queryoptional
pageNumberinteger-queryoptional
pageSizeinteger-queryoptional

Response

Response codes

CodeTypeDescription
200RestGroup[]

Get groups

404ExceptionMessage

Could not find requested account

Response body objects

The RestGroup object

ElementTypeDescription
uuidstring-

Can be null.

namestring-

Can be null.

ownerstring-

Can be null.

descriptionstring-

Can be null.

federatedAttributeValuesstring[]-

Can be null.

createdAtstring-

Can be null.

updatedAtstring-

Can be null.

Response body JSON model

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