Datadog · Arazzo Workflow

Datadog Declare an Incident

Version 1.0.0

Create an incident, update its details, then add a follow-up todo entry.

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

Provider

datadog

Workflows

declare-incident
Create an incident, update it, then add a todo entry.
Declares a new incident, updates its attributes with a customer impact summary and severity, then creates an incident todo for follow-up.
3 steps inputs: customerImpactScope, customerImpacted, severity, title, todoContent outputs: incidentId, todoId
1
createIncident
Declare a new incident with a title and a flag indicating whether customers are impacted.
2
updateIncident
Update the incident with a customer impact summary and a severity field selection now that more detail is known.
3
addTodo
Add a follow-up todo to the incident so responders have a tracked next action on the timeline.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Datadog Declare an Incident
  summary: Create an incident, update its details, then add a follow-up todo entry.
  description: >-
    Walks the early lifecycle of a Datadog incident: a new incident is
    declared with a title and customer-impact flag, the incident is then
    updated to attach a customer impact summary and severity selection, and
    finally a follow-up todo is added to the incident timeline so responders
    have a tracked next action. 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: createApi
  url: ../openapi/datadog-create-api-openapi.yml
  type: openapi
- name: existingApi
  url: ../openapi/datadog-existing-api-openapi.yml
  type: openapi
workflows:
- workflowId: declare-incident
  summary: Create an incident, update it, then add a todo entry.
  description: >-
    Declares a new incident, updates its attributes with a customer impact
    summary and severity, then creates an incident todo for follow-up.
  inputs:
    type: object
    required:
    - title
    - todoContent
    properties:
      title:
        type: string
        description: The title summarizing what happened in the incident.
      customerImpacted:
        type: boolean
        description: Whether the incident caused customer impact.
      customerImpactScope:
        type: string
        description: A summary of the impact customers experienced.
      severity:
        type: string
        description: The severity selection for the incident (e.g. SEV-2).
      todoContent:
        type: string
        description: The content of the follow-up todo to add to the incident.
  steps:
  - stepId: createIncident
    description: >-
      Declare a new incident with a title and a flag indicating whether
      customers are impacted.
    operationId: CreateIncident
    requestBody:
      contentType: application/json
      payload:
        data:
          type: incidents
          attributes:
            title: $inputs.title
            customer_impacted: $inputs.customerImpacted
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      incidentId: $response.body#/data/id
      title: $response.body#/data/attributes/title
  - stepId: updateIncident
    description: >-
      Update the incident with a customer impact summary and a severity field
      selection now that more detail is known.
    operationId: UpdateIncident
    parameters:
    - name: incident_id
      in: path
      value: $steps.createIncident.outputs.incidentId
    requestBody:
      contentType: application/json
      payload:
        data:
          id: $steps.createIncident.outputs.incidentId
          type: incidents
          attributes:
            customer_impact_scope: $inputs.customerImpactScope
            fields:
              severity:
                type: dropdown
                value: $inputs.severity
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      incidentId: $response.body#/data/id
  - stepId: addTodo
    description: >-
      Add a follow-up todo to the incident so responders have a tracked next
      action on the timeline.
    operationId: CreateIncidentTodo
    parameters:
    - name: incident_id
      in: path
      value: $steps.createIncident.outputs.incidentId
    requestBody:
      contentType: application/json
      payload:
        data:
          type: incident_todos
          attributes:
            content: $inputs.todoContent
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      todoId: $response.body#/data/id
  outputs:
    incidentId: $steps.createIncident.outputs.incidentId
    todoId: $steps.addTodo.outputs.todoId

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-declare-incident-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.