Intuit · Arazzo Workflow

Intuit Create Item and Invoice

Version 1.0.0

Create a sellable service item and invoice a customer using that item.

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-item-and-invoice
Create a service item then invoice a customer with it.
Creates an Item, raises an Invoice whose line references that item, and reads the invoice back to confirm the calculated total.
3 steps inputs: accessToken, customerId, incomeAccountId, itemName, quantity, unitPrice outputs: invoiceId, itemId, totalAmt
1
createItem
Create a service item with a unit price and income account.
2
createInvoice
Raise an invoice whose line references the new item.
3
readInvoice
Read the invoice back to confirm the line and total.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Intuit Create Item and Invoice
  summary: Create a sellable service item and invoice a customer using that item.
  description: >-
    Builds the product catalog and a sale in one pass. The workflow creates a
    Service Item with an income account reference and unit price, then raises an
    Invoice whose Line references the new item through SalesItemLineDetail, and
    reads the invoice back to confirm the line resolved to the item. 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: invoicesApi
  url: ../openapi/intuit-invoices-api-openapi.yml
  type: openapi
- name: itemsApi
  url: ../openapi/intuit-items-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-item-and-invoice
  summary: Create a service item then invoice a customer with it.
  description: >-
    Creates an Item, raises an Invoice whose line references that item, and
    reads the invoice back to confirm the calculated total.
  inputs:
    type: object
    required:
    - accessToken
    - itemName
    - unitPrice
    - incomeAccountId
    - customerId
    - quantity
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the QuickBooks company.
      itemName:
        type: string
        description: Name of the new service item.
      unitPrice:
        type: number
        description: Unit price of the item.
      incomeAccountId:
        type: string
        description: Id of the income account the item posts revenue to.
      customerId:
        type: string
        description: Id of the customer to invoice.
      quantity:
        type: number
        description: Quantity of the item to bill on the invoice line.
  steps:
  - stepId: createItem
    description: Create a service item with a unit price and income account.
    operationId: createItem
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.itemName
        Type: Service
        UnitPrice: $inputs.unitPrice
        IncomeAccountRef:
          value: $inputs.incomeAccountId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      itemId: $response.body#/Item/Id
      itemName: $response.body#/Item/Name
      unitPrice: $response.body#/Item/UnitPrice
  - stepId: createInvoice
    description: Raise an invoice whose line references the new item.
    operationId: createInvoice
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        CustomerRef:
          value: $inputs.customerId
        Line:
        - Amount: $steps.createItem.outputs.unitPrice
          DetailType: SalesItemLineDetail
          SalesItemLineDetail:
            ItemRef:
              value: $steps.createItem.outputs.itemId
            Qty: $inputs.quantity
            UnitPrice: $steps.createItem.outputs.unitPrice
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      invoiceId: $response.body#/Invoice/Id
      totalAmt: $response.body#/Invoice/TotalAmt
  - stepId: readInvoice
    description: Read the invoice back to confirm the line and total.
    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:
      totalAmt: $response.body#/Invoice/TotalAmt
      balance: $response.body#/Invoice/Balance
  outputs:
    itemId: $steps.createItem.outputs.itemId
    invoiceId: $steps.createInvoice.outputs.invoiceId
    totalAmt: $steps.readInvoice.outputs.totalAmt

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-item-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.