Cross-Provider Workflow

Provision RDS Instance with Email Notice

Version 1.0.0

Create an Amazon RDS database instance, then email the team via SendGrid.

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

Providers Orchestrated

amazon-rds sendgrid

Workflows

provision-instance-email
Create an RDS instance and email a provisioning notice.
Creates a new Amazon RDS DB instance, then emails an infrastructure team a provisioning confirmation via SendGrid Mail Send.
2 steps inputs: dbInstanceClass, dbInstanceIdentifier, engine, teamEmail outputs: createStatus, emailStatus
1
create-instance
$sourceDescriptions.amazonRdsApi.createDBInstance
Create a new Amazon RDS database instance.
2
email-team
$sourceDescriptions.sendgridApi.SendMail
Email the infrastructure team the provisioning notice.

Source API Descriptions

Arazzo Workflow Specification

geo-amazon-rds-create-instance-sendgrid.yml Raw ↑
arazzo: 1.0.1
info:
  title: Provision RDS Instance with Email Notice
  summary: Create an Amazon RDS database instance, then email the team via SendGrid.
  description: >-
    A high-value cross-domain provisioning workflow that creates a new Amazon RDS
    database instance and emails an infrastructure team to confirm the provisioning
    through SendGrid's Mail Send API. Demonstrates pairing a managed database provider
    with an email provider for provisioning notifications.
  version: 1.0.0
sourceDescriptions:
  - name: amazonRdsApi
    url: https://raw.githubusercontent.com/api-evangelist/amazon-rds/refs/heads/main/openapi/amazon-rds-db-instances-api-openapi.yml
    type: openapi
  - name: sendgridApi
    url: https://raw.githubusercontent.com/api-evangelist/sendgrid/refs/heads/main/openapi/sendgrid-mail-send-api-openapi.yml
    type: openapi
workflows:
  - workflowId: provision-instance-email
    summary: Create an RDS instance and email a provisioning notice.
    description: >-
      Creates a new Amazon RDS DB instance, then emails an infrastructure team a
      provisioning confirmation via SendGrid Mail Send.
    inputs:
      type: object
      properties:
        dbInstanceIdentifier:
          type: string
        dbInstanceClass:
          type: string
        engine:
          type: string
        teamEmail:
          type: string
    steps:
      - stepId: create-instance
        description: Create a new Amazon RDS database instance.
        operationId: $sourceDescriptions.amazonRdsApi.createDBInstance
        parameters:
          - name: DBInstanceIdentifier
            in: query
            value: $inputs.dbInstanceIdentifier
          - name: DBInstanceClass
            in: query
            value: $inputs.dbInstanceClass
          - name: Engine
            in: query
            value: $inputs.engine
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          createStatus: $statusCode
      - stepId: email-team
        description: Email the infrastructure team the provisioning notice.
        operationId: $sourceDescriptions.sendgridApi.SendMail
        requestBody:
          contentType: application/json
          payload:
            personalizations:
              - to:
                  - email: $inputs.teamEmail
                subject: RDS instance provisioned
            from:
              email: infra@example.com
            content:
              - type: text/plain
                value: A new Amazon RDS database instance has been provisioned.
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          emailStatus: $statusCode
    outputs:
      createStatus: $steps.create-instance.outputs.createStatus
      emailStatus: $steps.email-team.outputs.emailStatus

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/geo-amazon-rds-create-instance-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.