Cross-Provider Workflow

Sysdig Compliance Finding to SendGrid Email

Version 1.0.0

Pull Sysdig compliance tasks and results, then email a summary via SendGrid.

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

Providers Orchestrated

sysdig sendgrid

Workflows

compliance-results-email
List Sysdig compliance tasks, get results, and email a summary via SendGrid.
Lists Sysdig Secure compliance tasks, retrieves the results for a task, and sends a compliance summary email through SendGrid.
3 steps inputs: recipientEmail, taskId outputs: messageStatus, passPercent
1
list-tasks
$sourceDescriptions.sysdigSecureApi.listComplianceTasks
List compliance tasks configured in Sysdig Secure.
2
get-results
$sourceDescriptions.sysdigSecureApi.getComplianceResults
Retrieve compliance results for the selected task.
3
email-summary
$sourceDescriptions.sendgridMailApi.SendMail
Email the compliance summary to a stakeholder via SendGrid Mail Send.

Source API Descriptions

Arazzo Workflow Specification

sec-sysdig-compliance-finding-to-sendgrid.yml Raw ↑
arazzo: 1.0.1
info:
  title: Sysdig Compliance Finding to SendGrid Email
  summary: Pull Sysdig compliance tasks and results, then email a summary via SendGrid.
  description: >-
    A compliance reporting workflow that lists Sysdig Secure compliance tasks, retrieves the
    results for a selected task, and emails a compliance summary to a stakeholder through
    SendGrid's Mail Send API. Demonstrates orchestrating a cloud security posture platform
    with a communications provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: sysdigSecureApi
    url: https://raw.githubusercontent.com/api-evangelist/sysdig/refs/heads/main/openapi/sysdig-compliance-api-openapi.yml
    type: openapi
  - name: sendgridMailApi
    url: https://raw.githubusercontent.com/api-evangelist/sendgrid/refs/heads/main/openapi/sendgrid-mail-send-api-openapi.yml
    type: openapi
workflows:
  - workflowId: compliance-results-email
    summary: List Sysdig compliance tasks, get results, and email a summary via SendGrid.
    description: >-
      Lists Sysdig Secure compliance tasks, retrieves the results for a task, and sends a
      compliance summary email through SendGrid.
    inputs:
      type: object
      properties:
        taskId:
          type: string
        recipientEmail:
          type: string
    steps:
      - stepId: list-tasks
        description: List compliance tasks configured in Sysdig Secure.
        operationId: $sourceDescriptions.sysdigSecureApi.listComplianceTasks
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          taskCount: $response.body#/total
      - stepId: get-results
        description: Retrieve compliance results for the selected task.
        operationId: $sourceDescriptions.sysdigSecureApi.getComplianceResults
        parameters:
          - name: taskId
            in: path
            value: $inputs.taskId
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          passPercent: $response.body#/passPercent
      - stepId: email-summary
        description: Email the compliance summary to a stakeholder via SendGrid Mail Send.
        operationId: $sourceDescriptions.sendgridMailApi.SendMail
        requestBody:
          contentType: application/json
          payload:
            personalizations:
              - to:
                  - email: $inputs.recipientEmail
                subject: Sysdig compliance results summary
            from:
              email: compliance@example.com
            content:
              - type: text/plain
                value: Your Sysdig Secure compliance task results are ready for review.
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          messageStatus: $statusCode
    outputs:
      passPercent: $steps.get-results.outputs.passPercent
      messageStatus: $steps.email-summary.outputs.messageStatus

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-sysdig-compliance-finding-to-sendgrid"
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.