Dell Servers · Arazzo Workflow

Dell Servers OpenManage Alert Triage

Version 1.0.0

Find a critical alert, read its detail, then read the source device.

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

Provider

dell-servers

Workflows

ome-alert-triage
List critical alerts, read the top alert, then read its source device.
Lists critical alerts newest first, reads the top alert in detail, and reads the device that generated it.
3 steps inputs: alertFilter, alertOrderBy outputs: deviceName, recommendedAction, topAlertId
1
listCriticalAlerts
List alerts filtered to critical severity, most recent first.
2
getAlert
Read the top alert in detail for category and recommended action.
3
getSourceDevice
Read the device that generated the alert for state and health.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dell Servers OpenManage Alert Triage
  summary: Find a critical alert, read its detail, then read the source device.
  description: >-
    Triages the most urgent alerts in OpenManage Enterprise and ties each back
    to its source device. The workflow lists alerts filtered to critical
    severity and ordered most recent first, reads the top alert in detail for
    its category and recommended action, and then reads the device that
    generated the alert for its connection state and health. The result is a
    single triage view from alert to device. 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-600.40
  - BC-600.50
  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-600.40
      capability_name: IT Operations Management
      spec: dell-servers-alerts-api-openapi.yml
      confidence: 0.75
    - capability_id: BC-600.50
      capability_name: IT Infrastructure Management
      spec: dell-servers-devices-api-openapi.yml
      confidence: 0.8
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: alertsApi
  url: ../openapi/dell-servers-alerts-api-openapi.yml
  type: openapi
- name: devicesApi
  url: ../openapi/dell-servers-devices-api-openapi.yml
  type: openapi
workflows:
- workflowId: ome-alert-triage
  summary: List critical alerts, read the top alert, then read its source device.
  description: >-
    Lists critical alerts newest first, reads the top alert in detail, and
    reads the device that generated it.
  inputs:
    type: object
    properties:
      alertFilter:
        type: string
        description: >-
          OData filter expression for alert criteria, for example
          SeverityType eq 8 for critical alerts.
      alertOrderBy:
        type: string
        description: >-
          Property to sort the alert list by, for example TimeStamp for newest
          first ordering.
  steps:
  - stepId: listCriticalAlerts
    description: List alerts filtered to critical severity, most recent first.
    operationId: listAlerts
    parameters:
    - name: $filter
      in: query
      value: $inputs.alertFilter
    - name: $orderby
      in: query
      value: $inputs.alertOrderBy
    - name: $top
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      alertCount: $response.body#/@odata.count
      topAlertId: $response.body#/value/0/Id
      sourceDeviceId: $response.body#/value/0/AlertDeviceId
    onSuccess:
    - name: alertFound
      type: goto
      stepId: getAlert
      criteria:
      - context: $response.body
        condition: $.value.length > 0
        type: jsonpath
    - name: noAlerts
      type: end
      criteria:
      - context: $response.body
        condition: $.value.length == 0
        type: jsonpath
  - stepId: getAlert
    description: Read the top alert in detail for category and recommended action.
    operationId: getAlert
    parameters:
    - name: AlertId
      in: path
      value: $steps.listCriticalAlerts.outputs.topAlertId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      message: $response.body#/Message
      category: $response.body#/CategoryName
      recommendedAction: $response.body#/RecommendedAction
  - stepId: getSourceDevice
    description: Read the device that generated the alert for state and health.
    operationId: getDevice
    parameters:
    - name: DeviceId
      in: path
      value: $steps.listCriticalAlerts.outputs.sourceDeviceId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deviceName: $response.body#/DeviceName
      connectionState: $response.body#/ConnectionState
      deviceHealth: $response.body#/Status
  outputs:
    topAlertId: $steps.listCriticalAlerts.outputs.topAlertId
    recommendedAction: $steps.getAlert.outputs.recommendedAction
    deviceName: $steps.getSourceDevice.outputs.deviceName

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/dell-servers-ome-alert-triage-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.