Cross-Provider Workflow

Aqua Security Image Registration and Scan Gate to Slack

Version 1.0.0

Register an image in Aqua, read its scan verdict, and notify Slack of the gate result.

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

Providers Orchestrated

aqua-security slack

Workflows

register-scan-and-gate
Register an Aqua image, read its scan result, and post the gate to Slack.
Registers a container image for scanning in Aqua Security, retrieves the image's scan and assurance status, and posts the resulting gate decision to a Slack channel.
3 steps inputs: imageName, registry, slackChannel outputs: criticalCount, messageTs
1
register-image
$sourceDescriptions.aquaSecurityApi.registerImage
Register a container image for scanning in Aqua Security.
2
get-image
$sourceDescriptions.aquaSecurityApi.getImage
Retrieve the scanned image's assurance and vulnerability status.
3
post-gate-result
$sourceDescriptions.slackChatApi.postChatPostmessage
Post the image scan gate decision to a Slack channel.

Source API Descriptions

Arazzo Workflow Specification

sec-aqua-image-scan-gate-to-slack.yml Raw ↑
arazzo: 1.0.1
info:
  title: Aqua Security Image Registration and Scan Gate to Slack
  summary: Register an image in Aqua, read its scan verdict, and notify Slack of the gate result.
  description: >-
    A container image security gate that registers an image for scanning in Aqua Security,
    retrieves the scanned image's assurance status, and posts the gate result to a Slack
    channel so a release can be approved or blocked. Demonstrates orchestrating a container
    security platform with a chat platform for CI/CD image gating 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: slackChatApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: register-scan-and-gate
    summary: Register an Aqua image, read its scan result, and post the gate to Slack.
    description: >-
      Registers a container image for scanning in Aqua Security, retrieves the image's
      scan and assurance status, and posts the resulting gate decision to a Slack channel.
    inputs:
      type: object
      properties:
        registry:
          type: string
        imageName:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: register-image
        description: Register a container image for scanning in Aqua Security.
        operationId: $sourceDescriptions.aquaSecurityApi.registerImage
        requestBody:
          contentType: application/json
          payload:
            registry: $inputs.registry
            image: $inputs.imageName
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          registeredImage: $response.body#/name
      - stepId: get-image
        description: Retrieve the scanned image's assurance and vulnerability status.
        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:
          assurancePassed: $response.body#/assurance_results/disallowed
          criticalCount: $response.body#/crit_vulns
      - stepId: post-gate-result
        description: Post the image scan gate decision to a Slack channel.
        operationId: $sourceDescriptions.slackChatApi.postChatPostmessage
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            channel: $inputs.slackChannel
            text: Aqua image scan gate result is ready for release review.
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      criticalCount: $steps.get-image.outputs.criticalCount
      messageTs: $steps.post-gate-result.outputs.messageTs

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-image-scan-gate-to-slack"
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.