Intuit · Arazzo Workflow

Intuit Remind Overdue Invoice

Version 1.0.0

Query for unpaid invoices and email a reminder for the first match.

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

Provider

intuit

Workflows

remind-overdue-invoice
Query unpaid invoices and resend the first one as a reminder.
Queries the Invoice entity for a positive Balance and, when a match exists, emails that invoice via the send endpoint.
2 steps inputs: accessToken, reminderEmail outputs: emailStatus, overdueInvoiceId
1
findUnpaidInvoices
Query the Invoice entity for records with an outstanding balance.
2
sendReminder
Email the first overdue invoice to the customer as a reminder.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Intuit Remind Overdue Invoice
  summary: Query for unpaid invoices and email a reminder for the first match.
  description: >-
    A receivables follow-up flow. The workflow queries the Invoice entity for
    records with a positive Balance ordered by due date, then branches: when at
    least one unpaid invoice is returned it emails that invoice to the customer
    through the send endpoint as a reminder. When nothing is overdue the flow
    ends. The invoice Id from the query feeds the send step. 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: remind-overdue-invoice
  summary: Query unpaid invoices and resend the first one as a reminder.
  description: >-
    Queries the Invoice entity for a positive Balance and, when a match exists,
    emails that invoice via the send endpoint.
  inputs:
    type: object
    required:
    - accessToken
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the QuickBooks company.
      reminderEmail:
        type: string
        description: Optional override email address for the reminder.
  steps:
  - stepId: findUnpaidInvoices
    description: Query the Invoice entity for records with an outstanding balance.
    operationId: queryEntities
    parameters:
    - name: query
      in: query
      value: "SELECT * FROM Invoice WHERE Balance > '0' ORDERBY DueDate"
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      overdueInvoiceId: $response.body#/QueryResponse/Invoice/0/Id
    onSuccess:
    - name: hasOverdue
      type: goto
      stepId: sendReminder
      criteria:
      - context: $response.body
        condition: $.QueryResponse.Invoice.length > 0
        type: jsonpath
    - name: nothingOverdue
      type: end
      criteria:
      - context: $response.body
        condition: $.QueryResponse.Invoice.length == 0
        type: jsonpath
  - stepId: sendReminder
    description: Email the first overdue invoice to the customer as a reminder.
    operationId: sendInvoice
    parameters:
    - name: invoiceId
      in: path
      value: $steps.findUnpaidInvoices.outputs.overdueInvoiceId
    - name: sendTo
      in: query
      value: $inputs.reminderEmail
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      emailStatus: $response.body#/Invoice/EmailStatus
      invoiceId: $response.body#/Invoice/Id
  outputs:
    overdueInvoiceId: $steps.findUnpaidInvoices.outputs.overdueInvoiceId
    emailStatus: $steps.sendReminder.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/intuit-remind-overdue-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.