Dell Servers · Arazzo Workflow

Dell Servers OpenManage Device Discovery

Version 1.0.0

Create a discovery configuration, watch its job, then list discovered devices.

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

Provider

dell-servers

Workflows

ome-discovery
Create a discovery config, poll discovery jobs, then list devices.
Creates a run-now discovery configuration, polls the discovery jobs until none remain in progress, and lists the resulting managed devices.
3 steps inputs: configName, connectionProfileId, deviceType, networkAddress outputs: createStatus, deviceCount, devices
1
createDiscovery
Create a discovery configuration group that targets the supplied network address and runs immediately.
2
pollDiscoveryJobs
Read the discovery jobs collection and loop while any job is still present; end once no discovery jobs remain.
3
listDevices
List the managed devices to confirm newly discovered systems.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dell Servers OpenManage Device Discovery
  summary: Create a discovery configuration, watch its job, then list discovered devices.
  description: >-
    Onboards new infrastructure into OpenManage Enterprise by running a
    discovery against a network range. The workflow creates a discovery
    configuration group that targets a network address with a connection
    profile and runs immediately, polls the discovery jobs collection until a
    job is no longer in progress, and then lists the managed devices to confirm
    the newly discovered systems. Branching keeps the flow in the poll loop
    while discovery work is still pending. 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.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.50
      capability_name: IT Infrastructure Management
      spec: dell-servers-discovery-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: devicesApi
  url: ../openapi/dell-servers-devices-api-openapi.yml
  type: openapi
- name: discoveryApi
  url: ../openapi/dell-servers-discovery-api-openapi.yml
  type: openapi
workflows:
- workflowId: ome-discovery
  summary: Create a discovery config, poll discovery jobs, then list devices.
  description: >-
    Creates a run-now discovery configuration, polls the discovery jobs until
    none remain in progress, and lists the resulting managed devices.
  inputs:
    type: object
    required:
    - configName
    - networkAddress
    - connectionProfileId
    properties:
      configName:
        type: string
        description: Name for the discovery configuration group.
      networkAddress:
        type: string
        description: IP address, range, or CIDR to scan for devices.
      connectionProfileId:
        type: integer
        description: Connection profile identifier holding discovery credentials.
      deviceType:
        type: integer
        description: Device type code to discover, for example a server type code.
  steps:
  - stepId: createDiscovery
    description: >-
      Create a discovery configuration group that targets the supplied network
      address and runs immediately.
    operationId: createDiscoveryConfig
    requestBody:
      contentType: application/json
      payload:
        DiscoveryConfigGroupName: $inputs.configName
        DiscoveryConfigModels:
        - DiscoveryConfigTargets:
          - NetworkAddressDetail: $inputs.networkAddress
          ConnectionProfileId: $inputs.connectionProfileId
          DeviceType:
          - $inputs.deviceType
        Schedule:
          RunNow: true
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      createStatus: $statusCode
  - stepId: pollDiscoveryJobs
    description: >-
      Read the discovery jobs collection and loop while any job is still
      present; end once no discovery jobs remain.
    operationId: listDiscoveryJobs
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      discoveryJobs: $response.body#/value
    onSuccess:
    - name: jobsPending
      type: goto
      stepId: pollDiscoveryJobs
      criteria:
      - context: $response.body
        condition: $.value.length > 0
        type: jsonpath
    - name: jobsDone
      type: goto
      stepId: listDevices
      criteria:
      - context: $response.body
        condition: $.value.length == 0
        type: jsonpath
  - stepId: listDevices
    description: List the managed devices to confirm newly discovered systems.
    operationId: listDevices
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      deviceCount: $response.body#/@odata.count
      devices: $response.body#/value
  outputs:
    createStatus: $steps.createDiscovery.outputs.createStatus
    deviceCount: $steps.listDevices.outputs.deviceCount
    devices: $steps.listDevices.outputs.devices

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