Cross-Provider Workflow

Stripe Payment to SMS Confirmation

Version 1.0.0

Charge a customer with Stripe, then text them a confirmation via Twilio.

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

Providers Orchestrated

stripe twilio

Workflows

charge-and-sms-confirm
Create a Stripe payment, then text an SMS confirmation on success.
Creates and confirms a PaymentIntent in Stripe and, on a succeeded charge, sends a confirmation SMS via Twilio Messaging.
2 steps inputs: accountSid, amount, currency, fromPhone, paymentMethod, toPhone outputs: messageSid, paymentId
1
create-payment
$sourceDescriptions.stripeApi.postPaymentIntents
Create and confirm a PaymentIntent for the customer's order.
2
send-confirmation
$sourceDescriptions.twilioMessagingApi.createMessage
Text the customer an order confirmation via Twilio Messaging.

Source API Descriptions

Arazzo Workflow Specification

geo-stripe-payment-twilio-sms-confirm.yml Raw ↑
arazzo: 1.0.1
info:
  title: Stripe Payment to SMS Confirmation
  summary: Charge a customer with Stripe, then text them a confirmation via Twilio.
  description: >-
    A high-value cross-domain workflow that takes a payment through Stripe's
    PaymentIntents API and, on success, sends an order confirmation to the customer as
    an SMS through Twilio's Messaging API. Demonstrates pairing a payments provider with
    a communications provider for transactional notifications.
  version: 1.0.0
sourceDescriptions:
  - name: stripeApi
    url: https://raw.githubusercontent.com/api-evangelist/stripe/refs/heads/main/openapi/stripe-payment-intents-api-openapi.yml
    type: openapi
  - name: twilioMessagingApi
    url: https://raw.githubusercontent.com/api-evangelist/twilio/refs/heads/main/openapi/twilio-messages-api-openapi.yml
    type: openapi
workflows:
  - workflowId: charge-and-sms-confirm
    summary: Create a Stripe payment, then text an SMS confirmation on success.
    description: >-
      Creates and confirms a PaymentIntent in Stripe and, on a succeeded charge, sends
      a confirmation SMS via Twilio Messaging.
    inputs:
      type: object
      properties:
        amount:
          type: integer
        currency:
          type: string
        paymentMethod:
          type: string
        accountSid:
          type: string
        toPhone:
          type: string
        fromPhone:
          type: string
    steps:
      - stepId: create-payment
        description: Create and confirm a PaymentIntent for the customer's order.
        operationId: $sourceDescriptions.stripeApi.postPaymentIntents
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            amount: $inputs.amount
            currency: $inputs.currency
            confirm: true
            payment_method: $inputs.paymentMethod
        successCriteria:
          - condition: $statusCode == 200
          - condition: $response.body#/status == "succeeded"
        outputs:
          paymentId: $response.body#/id
          chargeStatus: $response.body#/status
      - stepId: send-confirmation
        description: Text the customer an order confirmation via Twilio Messaging.
        operationId: $sourceDescriptions.twilioMessagingApi.createMessage
        parameters:
          - name: AccountSid
            in: path
            value: $inputs.accountSid
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            To: $inputs.toPhone
            From: $inputs.fromPhone
            Body: Your payment was received. Thank you for your order.
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          messageSid: $response.body#/sid
    outputs:
      paymentId: $steps.create-payment.outputs.paymentId
      messageSid: $steps.send-confirmation.outputs.messageSid

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-stripe-payment-twilio-sms-confirm"
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.