Dynatrace · Schema

UserCollection

A paginated collection of users.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
nextPageKey string Cursor for the next page of results.
totalCount integer The total number of users in the account.
items array The list of users on this page.
View JSON Schema on GitHub

JSON Schema

account-management-api-user-collection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/account-management-api-user-collection-schema.json",
  "title": "UserCollection",
  "description": "A paginated collection of users.",
  "type": "object",
  "properties": {
    "nextPageKey": {
      "type": "string",
      "description": "Cursor for the next page of results.",
      "nullable": true,
      "example": "example-value"
    },
    "totalCount": {
      "type": "integer",
      "format": "int64",
      "description": "The total number of users in the account.",
      "example": 500
    },
    "items": {
      "type": "array",
      "description": "The list of users on this page.",
      "items": {
        "$ref": "#/components/schemas/User"
      },
      "example": [
        {
          "uid": "abc123",
          "email": "[email protected]",
          "firstName": "Production Service",
          "lastName": "Production Service",
          "groups": [
            "example-value"
          ],
          "userStatus": "ACTIVE"
        }
      ]
    }
  }
}