Datadog · Arazzo Workflow

Datadog Mute a Monitor

Version 1.0.0

Fetch a Datadog monitor, then mute it to suppress alert notifications.

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

Provider

datadog

Workflows

mute-monitor
Read a monitor and then mute it.
Fetches a monitor by ID to confirm it exists, then mutes it for the supplied scope and optional end timestamp.
2 steps inputs: end, monitorId, scope outputs: mutedMonitorId, silenced
1
getMonitor
Read the monitor by ID to confirm it exists and capture its current name before muting.
2
muteMonitor
Mute the monitor for the supplied scope and optional expiration so alert notifications are suppressed.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Datadog Mute a Monitor
  summary: Fetch a Datadog monitor, then mute it to suppress alert notifications.
  description: >-
    A common maintenance pattern for Datadog monitors. The workflow first reads
    the target monitor to confirm it exists and capture its current name, then
    mutes it for a given scope and optional expiration so that alert
    notifications are suppressed while the monitor continues to evaluate. 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-4220.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-4220.20
      capability_name: Observability Management
      spec: datadog-monitors-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: monitorMutingApi
  url: ../openapi/datadog-monitor-muting-api-openapi.yml
  type: openapi
- name: monitorsApi
  url: ../openapi/datadog-monitors-api-openapi.yml
  type: openapi
workflows:
- workflowId: mute-monitor
  summary: Read a monitor and then mute it.
  description: >-
    Fetches a monitor by ID to confirm it exists, then mutes it for the supplied
    scope and optional end timestamp.
  inputs:
    type: object
    required:
    - monitorId
    properties:
      monitorId:
        type: integer
        description: The unique numeric ID of the monitor to mute.
      scope:
        type: string
        description: The scope expression specifying which groups to mute (e.g. host:web-01).
      end:
        type: integer
        description: Unix timestamp in seconds when the mute expires; omit for indefinite mute.
  steps:
  - stepId: getMonitor
    description: >-
      Read the monitor by ID to confirm it exists and capture its current name
      before muting.
    operationId: getMonitor
    parameters:
    - name: monitor_id
      in: path
      value: $inputs.monitorId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      monitorId: $response.body#/id
      monitorName: $response.body#/name
  - stepId: muteMonitor
    description: >-
      Mute the monitor for the supplied scope and optional expiration so alert
      notifications are suppressed.
    operationId: muteMonitor
    parameters:
    - name: monitor_id
      in: path
      value: $steps.getMonitor.outputs.monitorId
    requestBody:
      contentType: application/json
      payload:
        scope: $inputs.scope
        end: $inputs.end
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mutedMonitorId: $response.body#/id
      silenced: $response.body#/options/silenced
  outputs:
    mutedMonitorId: $steps.muteMonitor.outputs.mutedMonitorId
    silenced: $steps.muteMonitor.outputs.silenced

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-mute-monitor-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.