IBM WebSphere · Arazzo Workflow

WebSphere Automation Vulnerability Remediation

Version 1.0.0

Find an open critical vulnerability, inspect it, and apply a fix.

1 workflow 1 source API 1 provider
View Spec View on GitHub Application ServerCloud-NativeEnterprise JavaJ2EEMicroservicesMiddlewareArazzoWorkflows

Provider

websphere

Workflows

remediate-vulnerability
Inspect an open vulnerability and initiate a fix on the affected servers.
Lists open critical vulnerabilities, reads the target vulnerability, and initiates resolution by applying a fix to the supplied target servers.
3 steps inputs: fixId, serverIds, vulnerabilityId outputs: severity, taskId, vulnerabilityId
1
listOpenCritical
List open critical vulnerabilities affecting managed servers so the target can be confirmed.
2
getVulnerability
Read the target vulnerability to capture its severity, affected servers, and available fixes.
3
resolveVulnerability
Initiate resolution of the vulnerability by applying the chosen fix to the target servers. Returns a task id for the asynchronous remediation.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: WebSphere Automation Vulnerability Remediation
  summary: Find an open critical vulnerability, inspect it, and apply a fix.
  description: >-
    A WebSphere Automation security remediation flow. The workflow lists open
    critical vulnerabilities affecting managed servers, reads the chosen
    vulnerability to capture the affected servers and available fixes, and then
    initiates resolution by applying a fix to the targeted servers. 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-620.40
  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-620.40
      capability_name: Vulnerability Management
      spec: websphere-vulnerabilities-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: vulnerabilitiesApi
  url: ../openapi/websphere-vulnerabilities-api-openapi.yml
  type: openapi
workflows:
- workflowId: remediate-vulnerability
  summary: Inspect an open vulnerability and initiate a fix on the affected servers.
  description: >-
    Lists open critical vulnerabilities, reads the target vulnerability, and
    initiates resolution by applying a fix to the supplied target servers.
  inputs:
    type: object
    required:
    - vulnerabilityId
    - fixId
    - serverIds
    properties:
      vulnerabilityId:
        type: string
        description: The vulnerability identifier to remediate.
      fixId:
        type: string
        description: The specific fix to apply.
      serverIds:
        type: array
        items:
          type: string
        description: Target servers for the fix.
  steps:
  - stepId: listOpenCritical
    description: >-
      List open critical vulnerabilities affecting managed servers so the target
      can be confirmed.
    operationId: listVulnerabilities
    parameters:
    - name: severity
      in: query
      value: critical
    - name: status
      in: query
      value: open
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      vulnerabilities: $response.body#/vulnerabilities
      totalCount: $response.body#/totalCount
  - stepId: getVulnerability
    description: >-
      Read the target vulnerability to capture its severity, affected servers,
      and available fixes.
    operationId: getVulnerability
    parameters:
    - name: vulnerabilityId
      in: path
      value: $inputs.vulnerabilityId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      severity: $response.body#/severity
      affectedServers: $response.body#/affectedServers
      availableFixes: $response.body#/availableFixes
  - stepId: resolveVulnerability
    description: >-
      Initiate resolution of the vulnerability by applying the chosen fix to the
      target servers. Returns a task id for the asynchronous remediation.
    operationId: resolveVulnerability
    parameters:
    - name: vulnerabilityId
      in: path
      value: $inputs.vulnerabilityId
    requestBody:
      contentType: application/json
      payload:
        action: apply-fix
        fixId: $inputs.fixId
        serverIds: $inputs.serverIds
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      taskId: $response.body#/taskId
      taskStatus: $response.body#/status
  outputs:
    vulnerabilityId: $inputs.vulnerabilityId
    severity: $steps.getVulnerability.outputs.severity
    taskId: $steps.resolveVulnerability.outputs.taskId

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/websphere-vulnerability-remediation-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.