Dell Servers · Arazzo Workflow

Dell Servers OpenManage Firmware Update Job

Version 1.0.0

Check firmware baselines, run an update job, and poll it to completion.

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

Provider

dell-servers

Workflows

ome-firmware-update-job
Read baselines, create an update job, then poll the job to completion.
Confirms firmware compliance baselines, creates a firmware update job targeting a device, and polls the job until it reaches one hundred percent.
3 steps inputs: deviceId, jobName, targetTypeId, targetTypeName outputs: finalStatus, jobId, percentComplete
1
getBaselines
Read firmware compliance baselines to confirm which components are out of compliance before scheduling the update.
2
createUpdateJob
Create a job that targets the device for the firmware update and run it immediately.
3
pollJob
Read the job and loop while it is still in progress; end once the completion percentage reaches one hundred.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Dell Servers OpenManage Firmware Update Job
  summary: Check firmware baselines, run an update job, and poll it to completion.
  description: >-
    Drives a firmware update on a managed device through OpenManage Enterprise
    and waits for it to finish. The workflow reads the firmware compliance
    baselines to confirm which components are out of date, creates a job that
    targets the device for the update, and then polls the job until its
    completion percentage reaches one hundred. Branching loops back into the
    poll while the job is still in progress and ends the flow once the job is
    complete. Because the create-job request requires a target list, the device
    identifier is supplied as a job target. 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-firmware-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: firmwareApi
  url: ../openapi/dell-servers-firmware-api-openapi.yml
  type: openapi
- name: jobsApi
  url: ../openapi/dell-servers-jobs-api-openapi.yml
  type: openapi
workflows:
- workflowId: ome-firmware-update-job
  summary: Read baselines, create an update job, then poll the job to completion.
  description: >-
    Confirms firmware compliance baselines, creates a firmware update job
    targeting a device, and polls the job until it reaches one hundred percent.
  inputs:
    type: object
    required:
    - deviceId
    - jobName
    - targetTypeId
    properties:
      deviceId:
        type: integer
        description: Device to target with the firmware update job.
      jobName:
        type: string
        description: Name for the firmware update job.
      targetTypeId:
        type: integer
        description: >-
          Target type identifier describing the supplied target, for example
          the device target type code.
      targetTypeName:
        type: string
        description: Target type name, for example DEVICE.
  steps:
  - stepId: getBaselines
    description: >-
      Read firmware compliance baselines to confirm which components are out of
      compliance before scheduling the update.
    operationId: getFirmwareBaselines
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      baselines: $response.body#/value
  - stepId: createUpdateJob
    description: >-
      Create a job that targets the device for the firmware update and run it
      immediately.
    operationId: createJob
    requestBody:
      contentType: application/json
      payload:
        JobName: $inputs.jobName
        JobDescription: Firmware update job created via Arazzo workflow
        Schedule: startnow
        Targets:
        - Id: $inputs.deviceId
          Data: ''
          TargetType:
            Id: $inputs.targetTypeId
            Name: $inputs.targetTypeName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      jobId: $response.body#/Id
  - stepId: pollJob
    description: >-
      Read the job and loop while it is still in progress; end once the
      completion percentage reaches one hundred.
    operationId: getJob
    parameters:
    - name: JobId
      in: path
      value: $steps.createUpdateJob.outputs.jobId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      percentComplete: $response.body#/PercentComplete
      jobStatus: $response.body#/JobStatus/Name
    onSuccess:
    - name: stillRunning
      type: goto
      stepId: pollJob
      criteria:
      - context: $response.body
        condition: $.PercentComplete < 100
        type: jsonpath
    - name: complete
      type: end
      criteria:
      - context: $response.body
        condition: $.PercentComplete == 100
        type: jsonpath
  outputs:
    jobId: $steps.createUpdateJob.outputs.jobId
    finalStatus: $steps.pollJob.outputs.jobStatus
    percentComplete: $steps.pollJob.outputs.percentComplete

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-firmware-update-job-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.