Intuit · Arazzo Workflow

Intuit Create Customer and Invoice

Version 1.0.0

Create a new QuickBooks customer and immediately raise their first invoice.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AccountingCustom FieldsFinancialFinancial-ServicesInvoicingPaymentsPayrollProject ManagementSales TaxSmall BusinessTaxTax PreparationTaxesTime TrackingFortune 1000ArazzoWorkflows

Provider

intuit

Workflows

create-customer-and-invoice
Create a customer then invoice them in a single chained flow.
Creates a Customer, raises an Invoice against the returned customer Id, and reads the invoice back to surface the calculated TotalAmt and Balance.
3 steps inputs: accessToken, companyName, displayName, email, lineAmount, lineDescription outputs: balance, customerId, invoiceId
1
createCustomer
Create the customer record from the supplied display name and contacts.
2
createInvoice
Raise an invoice that references the newly created customer.
3
readInvoice
Read the invoice back to confirm calculated totals and balance.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Intuit Create Customer and Invoice
  summary: Create a new QuickBooks customer and immediately raise their first invoice.
  description: >-
    A foundational order-to-cash flow for QuickBooks Online. The workflow
    creates a brand new Customer from a display name and contact details, then
    raises an Invoice that references the freshly created customer via its
    CustomerRef, and finally reads the invoice back to confirm the totals and
    balance QuickBooks calculated. Every step spells out its request inline so
    the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-200.30
  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-200.30
      capability_name: Accounts Receivable Management
      spec: intuit-invoices-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: customersApi
  url: ../openapi/intuit-customers-api-openapi.yml
  type: openapi
- name: invoicesApi
  url: ../openapi/intuit-invoices-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-customer-and-invoice
  summary: Create a customer then invoice them in a single chained flow.
  description: >-
    Creates a Customer, raises an Invoice against the returned customer Id, and
    reads the invoice back to surface the calculated TotalAmt and Balance.
  inputs:
    type: object
    required:
    - accessToken
    - displayName
    - lineAmount
    - lineDescription
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the QuickBooks company.
      displayName:
        type: string
        description: Unique display name for the new customer.
      companyName:
        type: string
        description: Optional company name for the customer.
      email:
        type: string
        description: Primary email address for the customer.
      lineAmount:
        type: number
        description: Amount for the single invoice line item.
      lineDescription:
        type: string
        description: Description for the single invoice line item.
  steps:
  - stepId: createCustomer
    description: Create the customer record from the supplied display name and contacts.
    operationId: createCustomer
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        DisplayName: $inputs.displayName
        CompanyName: $inputs.companyName
        PrimaryEmailAddr:
          Address: $inputs.email
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      customerId: $response.body#/Customer/Id
      customerName: $response.body#/Customer/DisplayName
  - stepId: createInvoice
    description: Raise an invoice that references the newly created customer.
    operationId: createInvoice
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        CustomerRef:
          value: $steps.createCustomer.outputs.customerId
        Line:
        - Amount: $inputs.lineAmount
          DetailType: SalesItemLineDetail
          Description: $inputs.lineDescription
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      invoiceId: $response.body#/Invoice/Id
      syncToken: $response.body#/Invoice/SyncToken
      totalAmt: $response.body#/Invoice/TotalAmt
  - stepId: readInvoice
    description: Read the invoice back to confirm calculated totals and balance.
    operationId: readInvoice
    parameters:
    - name: invoiceId
      in: path
      value: $steps.createInvoice.outputs.invoiceId
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      balance: $response.body#/Invoice/Balance
      totalAmt: $response.body#/Invoice/TotalAmt
  outputs:
    customerId: $steps.createCustomer.outputs.customerId
    invoiceId: $steps.createInvoice.outputs.invoiceId
    balance: $steps.readInvoice.outputs.balance

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/intuit-create-customer-and-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.