Cross-Provider Workflow

Aqua Security Vulnerability to Cortex XSOAR Incident

Version 1.0.0

Find a vulnerable image in Aqua and open a Cortex XSOAR incident for response.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

aqua-security palo-alto-networks

Workflows

vuln-to-soar-incident
List Aqua images, read vulnerabilities, and open a Cortex XSOAR incident.
Lists scanned images in Aqua Security, reads the vulnerability detail for an image, and creates a Cortex XSOAR incident to drive response.
3 steps inputs: imageName, registry outputs: criticalCount, incidentId
1
list-images
$sourceDescriptions.aquaSecurityApi.listImages
List scanned container images in Aqua Security.
2
get-image
$sourceDescriptions.aquaSecurityApi.getImage
Read the vulnerability detail for the target image in Aqua Security.
3
create-incident
$sourceDescriptions.cortexXsoarApi.createIncident
Create a Cortex XSOAR incident to drive vulnerability response.

Source API Descriptions

Arazzo Workflow Specification

sec-aqua-vuln-to-xsoar-incident.yml Raw ↑
arazzo: 1.0.1
info:
  title: Aqua Security Vulnerability to Cortex XSOAR Incident
  summary: Find a vulnerable image in Aqua and open a Cortex XSOAR incident for response.
  description: >-
    A security orchestration workflow that lists scanned images in Aqua Security, reads the
    vulnerability detail for a target image, and creates an incident in Palo Alto Networks
    Cortex XSOAR so an automated playbook can drive response. Demonstrates orchestrating a
    container security platform with a SOAR platform in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: aquaSecurityApi
    url: https://raw.githubusercontent.com/api-evangelist/aqua-security/refs/heads/main/openapi/aqua-security-images-api-openapi.yml
    type: openapi
  - name: cortexXsoarApi
    url: https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/openapi/palo-alto-networks-incidents-api-openapi.yml
    type: openapi
workflows:
  - workflowId: vuln-to-soar-incident
    summary: List Aqua images, read vulnerabilities, and open a Cortex XSOAR incident.
    description: >-
      Lists scanned images in Aqua Security, reads the vulnerability detail for an image,
      and creates a Cortex XSOAR incident to drive response.
    inputs:
      type: object
      properties:
        registry:
          type: string
        imageName:
          type: string
    steps:
      - stepId: list-images
        description: List scanned container images in Aqua Security.
        operationId: $sourceDescriptions.aquaSecurityApi.listImages
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          imageCount: $response.body#/count
      - stepId: get-image
        description: Read the vulnerability detail for the target image in Aqua Security.
        operationId: $sourceDescriptions.aquaSecurityApi.getImage
        parameters:
          - name: registry
            in: path
            value: $inputs.registry
          - name: repository
            in: path
            value: $inputs.imageName
          - name: tag
            in: path
            value: latest
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          criticalCount: $response.body#/crit_vulns
          highCount: $response.body#/high_vulns
      - stepId: create-incident
        description: Create a Cortex XSOAR incident to drive vulnerability response.
        operationId: $sourceDescriptions.cortexXsoarApi.createIncident
        requestBody:
          contentType: application/json
          payload:
            name: Aqua critical image vulnerability detected
            type: Vulnerability
            severity: 3
            details: A vulnerable container image was detected in Aqua Security and requires response.
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          incidentId: $response.body#/id
    outputs:
      criticalCount: $steps.get-image.outputs.criticalCount
      incidentId: $steps.create-incident.outputs.incidentId

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/sec-aqua-vuln-to-xsoar-incident"
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.