Acceldata · Arazzo Workflow

Acceldata Triage Dataset Alerts

Version 1.0.0

Resolve a dataset, pull its open alerts, and acknowledge the most severe one.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AI AgentsData ManagementData ObservabilityData PipelineData QualityIntelligenceObservabilityArazzoWorkflows

Provider

acceldata

Workflows

triage-dataset-alerts
Find a dataset, list its open alerts, and acknowledge the first one.
Locates a dataset on a given source, queries the alerts filtered to that dataset and the open status, and branches: when one or more open alerts are returned it acknowledges the first alert, otherwise it ends.
3 steps inputs: acknowledgeComment, apiKey, source outputs: acknowledgedAlertId, datasetId, openAlertCount
1
findDataset
List datasets on the given source and capture the first dataset id to scope the subsequent alert query.
2
listOpenAlerts
Query alerts filtered to the resolved dataset and the open status so only actionable alerts are returned.
3
acknowledgeFirstAlert
Acknowledge the first open alert with an investigation comment so it is marked as being worked on.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Acceldata Triage Dataset Alerts
  summary: Resolve a dataset, pull its open alerts, and acknowledge the most severe one.
  description: >-
    A data reliability triage flow. The workflow finds a dataset by source,
    lists the open alerts associated with that dataset, and when at least one
    open alert exists it acknowledges the first one with an investigation
    comment. When no open alerts are present the flow ends cleanly. 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: alertsApi
  url: ../openapi/acceldata-alerts-api-openapi.yml
  type: openapi
- name: datasetsApi
  url: ../openapi/acceldata-datasets-api-openapi.yml
  type: openapi
workflows:
- workflowId: triage-dataset-alerts
  summary: Find a dataset, list its open alerts, and acknowledge the first one.
  description: >-
    Locates a dataset on a given source, queries the alerts filtered to that
    dataset and the open status, and branches: when one or more open alerts are
    returned it acknowledges the first alert, otherwise it ends.
  inputs:
    type: object
    required:
    - apiKey
    - source
    properties:
      apiKey:
        type: string
        description: Acceldata API key sent in the X-API-Key header.
      source:
        type: string
        description: Data source platform to filter datasets by (e.g. snowflake).
      acknowledgeComment:
        type: string
        description: Comment recorded when acknowledging the alert.
  steps:
  - stepId: findDataset
    description: >-
      List datasets on the given source and capture the first dataset id to
      scope the subsequent alert query.
    operationId: listDatasets
    parameters:
    - name: X-API-Key
      in: header
      value: $inputs.apiKey
    - name: source
      in: query
      value: $inputs.source
    - name: limit
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      datasetId: $response.body#/data/0/id
      datasetName: $response.body#/data/0/name
  - stepId: listOpenAlerts
    description: >-
      Query alerts filtered to the resolved dataset and the open status so only
      actionable alerts are returned.
    operationId: listAlerts
    parameters:
    - name: X-API-Key
      in: header
      value: $inputs.apiKey
    - name: dataset_id
      in: query
      value: $steps.findDataset.outputs.datasetId
    - name: status
      in: query
      value: open
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstAlertId: $response.body#/data/0/id
      total: $response.body#/total
    onSuccess:
    - name: alertsPresent
      type: goto
      stepId: acknowledgeFirstAlert
      criteria:
      - context: $response.body
        condition: $.data.length > 0
        type: jsonpath
    - name: noAlerts
      type: end
      criteria:
      - context: $response.body
        condition: $.data.length == 0
        type: jsonpath
  - stepId: acknowledgeFirstAlert
    description: >-
      Acknowledge the first open alert with an investigation comment so it is
      marked as being worked on.
    operationId: acknowledgeAlert
    parameters:
    - name: X-API-Key
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $steps.listOpenAlerts.outputs.firstAlertId
    requestBody:
      contentType: application/json
      payload:
        comment: $inputs.acknowledgeComment
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      alertId: $response.body#/id
      alertStatus: $response.body#/status
  outputs:
    datasetId: $steps.findDataset.outputs.datasetId
    openAlertCount: $steps.listOpenAlerts.outputs.total
    acknowledgedAlertId: $steps.acknowledgeFirstAlert.outputs.alertId

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/acceldata-triage-dataset-alerts-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.