Stripe · Arazzo Workflow

Stripe Quote to Paid Invoice

Version 1.0.0

Create a quote for a customer, finalize it, then accept it to generate the resulting invoice.

1 workflow 1 source API 1 provider
View Spec View on GitHub CommerceFinancial-ServicesFintechPaymentsT1ArazzoWorkflows

Provider

stripe

Workflows

quote-to-paid-invoice
Draft a quote, finalize it, then accept it to generate the invoice.
Creates a draft Quote for the supplied customer and price, finalizes the draft into an open quote, then accepts the quote so Stripe generates the resulting invoice. The accepted quote's invoice id is surfaced as the workflow output.
3 steps inputs: customer, description, price, quantity outputs: invoiceId, quoteId, status
1
createQuote
Draft a Quote for the customer with a single priced line item.
2
finalizeQuote
Finalize the draft quote so it becomes an immutable open quote.
3
acceptQuote
Accept the finalized quote, which generates the resulting invoice.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Stripe Quote to Paid Invoice
  summary: Create a quote for a customer, finalize it, then accept it to generate the resulting invoice.
  description: >-
    The native Stripe Quotes lifecycle for turning a proposal into billable
    revenue. The workflow first drafts a Quote for a customer and a priced line
    item, then finalizes that draft so it becomes an immutable open quote, and
    finally accepts the finalized quote which materializes the underlying
    invoice. Every step spells out its form-encoded request inline so the flow
    can be read and executed against Stripe test mode without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-410.40
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-410.40
      capability_name: Quote & Configuration Management
      spec: stripe-quotes-api-openapi.yml
      confidence: 0.72
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: quotesApi
  url: ../openapi/stripe-quotes-api-openapi.yml
  type: openapi
workflows:
- workflowId: quote-to-paid-invoice
  summary: Draft a quote, finalize it, then accept it to generate the invoice.
  description: >-
    Creates a draft Quote for the supplied customer and price, finalizes the
    draft into an open quote, then accepts the quote so Stripe generates the
    resulting invoice. The accepted quote's invoice id is surfaced as the
    workflow output.
  inputs:
    type: object
    required:
    - customer
    - price
    properties:
      customer:
        type: string
        description: ID of an existing Customer to create the quote for (e.g. cus_ from your test data).
      price:
        type: string
        description: ID of an existing Price to quote (e.g. price_ from your test catalog).
      quantity:
        type: integer
        description: Quantity of the priced line item to quote.
      description:
        type: string
        description: A description that will be displayed on the quote.
  steps:
  - stepId: createQuote
    description: Draft a Quote for the customer with a single priced line item.
    operationId: PostQuotes
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        customer: $inputs.customer
        description: $inputs.description
        line_items[0][price]: $inputs.price
        line_items[0][quantity]: $inputs.quantity
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      quoteId: $response.body#/id
      status: $response.body#/status
  - stepId: finalizeQuote
    description: Finalize the draft quote so it becomes an immutable open quote.
    operationId: PostQuotesQuoteFinalize
    parameters:
    - name: quote
      in: path
      value: $steps.createQuote.outputs.quoteId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      quoteId: $response.body#/id
      status: $response.body#/status
  - stepId: acceptQuote
    description: Accept the finalized quote, which generates the resulting invoice.
    operationId: PostQuotesQuoteAccept
    parameters:
    - name: quote
      in: path
      value: $steps.finalizeQuote.outputs.quoteId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      quoteId: $response.body#/id
      status: $response.body#/status
      invoiceId: $response.body#/invoice
  outputs:
    quoteId: $steps.acceptQuote.outputs.quoteId
    status: $steps.acceptQuote.outputs.status
    invoiceId: $steps.acceptQuote.outputs.invoiceId

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/stripe-quote-to-paid-invoice-workflow"
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.