Datadog · Arazzo Workflow

Datadog Create an Incident

Version 1.0.0

Declare an incident, read it back, then list incidents.

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

Provider

datadog

Workflows

create-incident
Declare a Datadog incident, get it, then list incidents.
Creates an incident with the supplied title and customer-impact flag, reads it back by id, and lists incidents in the organization.
3 steps inputs: customerImpacted, title outputs: incidentId, incidentTitle, incidents
1
createIncident
Declare an incident with the supplied title and customer-impact flag.
2
getIncident
Fetch the created incident by id to confirm it exists.
3
listIncidents
List incidents in the organization so the new incident can be located.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Datadog Create an Incident
  summary: Declare an incident, read it back, then list incidents.
  description: >-
    An incident-response pattern on the Datadog v2 Incidents API, substituted
    for a v1-only dashboard flow that this v2 specification does not expose. The
    workflow declares an incident with a title and customer-impact flag, fetches
    the created incident by id to confirm it exists, and then lists incidents so
    the new one 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: createApi
  url: ../openapi/datadog-create-api-openapi.yml
  type: openapi
- name: getApi
  url: ../openapi/datadog-get-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-incident
  summary: Declare a Datadog incident, get it, then list incidents.
  description: >-
    Creates an incident with the supplied title and customer-impact flag, reads
    it back by id, and lists incidents in the organization.
  inputs:
    type: object
    required:
    - title
    - customerImpacted
    properties:
      title:
        type: string
        description: The title of the incident, summarizing what happened.
      customerImpacted:
        type: boolean
        description: Whether the incident caused customer impact.
  steps:
  - stepId: createIncident
    description: Declare an incident with the supplied title and customer-impact flag.
    operationId: CreateIncident
    requestBody:
      contentType: application/json
      payload:
        data:
          type: incidents
          attributes:
            title: $inputs.title
            customer_impacted: $inputs.customerImpacted
          relationships:
            commander_user:
              data:
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      incidentId: $response.body#/data/id
  - stepId: getIncident
    description: Fetch the created incident by id to confirm it exists.
    operationId: GetIncident
    parameters:
    - name: incident_id
      in: path
      value: $steps.createIncident.outputs.incidentId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      incidentTitle: $response.body#/data/attributes/title
  - stepId: listIncidents
    description: List incidents in the organization so the new incident can be located.
    operationId: ListIncidents
    parameters:
    - name: page[size]
      in: query
      value: 10
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      incidents: $response.body#/data
  outputs:
    incidentId: $steps.createIncident.outputs.incidentId
    incidentTitle: $steps.getIncident.outputs.incidentTitle
    incidents: $steps.listIncidents.outputs.incidents

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-create-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.