Datadog · Arazzo Workflow

Datadog Invite a User

Version 1.0.0

Create (invite) a user for the organization, read it back, then list users.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AnalyticsDashboardsMonitoringPlatformT1VisualizationsArazzoWorkflows

Provider

datadog

Workflows

invite-user
Create a Datadog user, get it, then list all users.
Creates a user for the organization with the supplied email, reads it back by id, and lists all users in the organization.
3 steps inputs: email, name, title outputs: userId, userStatus, users
1
createUser
Create a user for the organization with the supplied attributes.
2
getUser
Fetch the created user by id to confirm the account exists.
3
listUsers
List all users in the organization so the new account can be located.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Datadog Invite a User
  summary: Create (invite) a user for the organization, read it back, then list users.
  description: >-
    A common user-provisioning pattern on the Datadog v2 Users API. The workflow
    creates a user for the organization by email, fetches the created user by id
    to confirm it exists, and then lists all users so the new account can be
    located among them. 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
sourceDescriptions:
- name: allApi
  url: ../openapi/datadog-all-api-openapi.yml
  type: openapi
- name: createApi
  url: ../openapi/datadog-create-api-openapi.yml
  type: openapi
- name: getApi
  url: ../openapi/datadog-get-api-openapi.yml
  type: openapi
workflows:
- workflowId: invite-user
  summary: Create a Datadog user, get it, then list all users.
  description: >-
    Creates a user for the organization with the supplied email, reads it back
    by id, and lists all users in the organization.
  inputs:
    type: object
    required:
    - email
    properties:
      email:
        type: string
        description: The email address of the user to create.
      name:
        type: string
        description: Optional display name of the user.
      title:
        type: string
        description: Optional title of the user.
  steps:
  - stepId: createUser
    description: Create a user for the organization with the supplied attributes.
    operationId: CreateUser
    requestBody:
      contentType: application/json
      payload:
        data:
          type: users
          attributes:
            email: $inputs.email
            name: $inputs.name
            title: $inputs.title
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      userId: $response.body#/data/id
  - stepId: getUser
    description: Fetch the created user by id to confirm the account exists.
    operationId: GetUser
    parameters:
    - name: user_id
      in: path
      value: $steps.createUser.outputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userStatus: $response.body#/data/attributes/status
      userEmail: $response.body#/data/attributes/email
  - stepId: listUsers
    description: List all users in the organization so the new account can be located.
    operationId: ListUsers
    parameters:
    - name: filter
      in: query
      value: $inputs.email
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      users: $response.body#/data
  outputs:
    userId: $steps.createUser.outputs.userId
    userStatus: $steps.getUser.outputs.userStatus
    users: $steps.listUsers.outputs.users

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/datadog-invite-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.