Dynatrace · Arazzo Workflow

Dynatrace Audit Account Access

Version 1.0.0

Enumerate users, groups, and permissions across a Dynatrace account for an access review.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservabilityArazzoWorkflows

Provider

dynatrace

Workflows

account-access-audit
List users, groups, and permissions for an access review.
Lists all users, then all groups, then all account-level permissions to assemble a complete access snapshot for the account.
3 steps inputs: accountUuid outputs: firstPermissionName, groupCount, userCount
1
listUsers
List all users in the account with their group memberships and status to form the basis of the access review.
2
listGroups
List all groups in the account so each user's memberships can be mapped to named groups during the review.
3
listPermissions
List all permissions defined for the account so each group's effective access can be evaluated against policy.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dynatrace Audit Account Access
  summary: Enumerate users, groups, and permissions across a Dynatrace account for an access review.
  description: >-
    Produces a point-in-time access snapshot for a Dynatrace account. The
    workflow lists all users, lists all groups, and lists all account
    permissions so an auditor can cross-reference who belongs to which group and
    what each group is allowed to do. Every step spells out its request inline so
    the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-620.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-620.20
      capability_name: Identity & Access Management
      spec: dynatrace-users-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: groupsApi
  url: ../openapi/dynatrace-groups-api-openapi.yml
  type: openapi
- name: permissionsApi
  url: ../openapi/dynatrace-permissions-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/dynatrace-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: account-access-audit
  summary: List users, groups, and permissions for an access review.
  description: >-
    Lists all users, then all groups, then all account-level permissions to
    assemble a complete access snapshot for the account.
  inputs:
    type: object
    required:
    - accountUuid
    properties:
      accountUuid:
        type: string
        description: The UUID of the Dynatrace account to audit.
  steps:
  - stepId: listUsers
    description: >-
      List all users in the account with their group memberships and status to
      form the basis of the access review.
    operationId: listUsers
    parameters:
    - name: accountUuid
      in: path
      value: $inputs.accountUuid
    - name: pageSize
      in: query
      value: 1000
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userCount: $response.body#/totalCount
      firstUserUid: $response.body#/items/0/uid
  - stepId: listGroups
    description: >-
      List all groups in the account so each user's memberships can be mapped to
      named groups during the review.
    operationId: listGroups
    parameters:
    - name: accountUuid
      in: path
      value: $inputs.accountUuid
    - name: pageSize
      in: query
      value: 1000
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupCount: $response.body#/totalCount
      firstGroupId: $response.body#/items/0/groupId
  - stepId: listPermissions
    description: >-
      List all permissions defined for the account so each group's effective
      access can be evaluated against policy.
    operationId: listPermissions
    parameters:
    - name: accountUuid
      in: path
      value: $inputs.accountUuid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstPermissionName: $response.body#/permissions/0/permissionName
      firstScopeType: $response.body#/permissions/0/scopeType
  outputs:
    userCount: $steps.listUsers.outputs.userCount
    groupCount: $steps.listGroups.outputs.groupCount
    firstPermissionName: $steps.listPermissions.outputs.firstPermissionName

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/dynatrace-account-access-audit-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.