Dynatrace · Arazzo Workflow

Dynatrace Onboard a User into a New Group

Version 1.0.0

Create a group, invite a user assigned to that group, and confirm the membership.

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

Provider

dynatrace

Workflows

onboard-account-user
Create a group, invite a user into it, and confirm membership.
Creates a group, creates a user assigned to the new group, and reads the user back to confirm the group membership.
3 steps inputs: accountUuid, email, firstName, groupDescription, groupName, lastName outputs: groupId, uid, userStatus
1
createGroup
Create a new user group in the account to carry the permissions the onboarded user will receive.
2
createUser
Create the user and send an invitation email, assigning the freshly created group so the user gains the associated permissions.
3
confirmMembership
Read the user back by ID to confirm the group membership and invitation status are as expected.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dynatrace Onboard a User into a New Group
  summary: Create a group, invite a user assigned to that group, and confirm the membership.
  description: >-
    Provisions access for a new team member in a Dynatrace account. The workflow
    creates a user group to carry permissions, creates the user with that group
    assigned at invitation time, and then reads the user back to confirm the
    group membership took effect. 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: usersApi
  url: ../openapi/dynatrace-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: onboard-account-user
  summary: Create a group, invite a user into it, and confirm membership.
  description: >-
    Creates a group, creates a user assigned to the new group, and reads the
    user back to confirm the group membership.
  inputs:
    type: object
    required:
    - accountUuid
    - groupName
    - email
    - firstName
    - lastName
    properties:
      accountUuid:
        type: string
        description: The UUID of the Dynatrace account to onboard into.
      groupName:
        type: string
        description: The display name of the group to create.
      groupDescription:
        type: string
        description: An optional description of the group's purpose.
      email:
        type: string
        description: The email address of the user to invite.
      firstName:
        type: string
        description: The first name of the user.
      lastName:
        type: string
        description: The last name of the user.
  steps:
  - stepId: createGroup
    description: >-
      Create a new user group in the account to carry the permissions the
      onboarded user will receive.
    operationId: createGroup
    parameters:
    - name: accountUuid
      in: path
      value: $inputs.accountUuid
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.groupName
        description: $inputs.groupDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupId: $response.body#/groupId
  - stepId: createUser
    description: >-
      Create the user and send an invitation email, assigning the freshly
      created group so the user gains the associated permissions.
    operationId: createUser
    parameters:
    - name: accountUuid
      in: path
      value: $inputs.accountUuid
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.email
        firstName: $inputs.firstName
        lastName: $inputs.lastName
        groups:
        - $steps.createGroup.outputs.groupId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uid: $response.body#/uid
      userStatus: $response.body#/userStatus
  - stepId: confirmMembership
    description: >-
      Read the user back by ID to confirm the group membership and invitation
      status are as expected.
    operationId: getUser
    parameters:
    - name: accountUuid
      in: path
      value: $inputs.accountUuid
    - name: userId
      in: path
      value: $steps.createUser.outputs.uid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      email: $response.body#/email
      groups: $response.body#/groups
      userStatus: $response.body#/userStatus
  outputs:
    groupId: $steps.createGroup.outputs.groupId
    uid: $steps.createUser.outputs.uid
    userStatus: $steps.confirmMembership.outputs.userStatus

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-onboard-account-user-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.