Intuit · Arazzo Workflow

Intuit Update Payment Amount

Version 1.0.0

Read a payment for its SyncToken and update its amount and reference.

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

Provider

intuit

Workflows

update-payment-amount
Read a payment then sparse-update its total amount and reference.
Reads a Payment for its SyncToken and applies a sparse update that sets a new TotalAmt and PaymentRefNum.
2 steps inputs: accessToken, newTotalAmt, paymentId, paymentRefNum outputs: newTotalAmt, oldTotalAmt, paymentId
1
readPayment
Read the payment to obtain its current Id and SyncToken.
2
updatePayment
Apply a sparse update setting the new total and reference number.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Intuit Update Payment Amount
  summary: Read a payment for its SyncToken and update its amount and reference.
  description: >-
    Corrects a recorded payment. The workflow reads a Payment to capture its
    current SyncToken, then applies a sparse update that revises the TotalAmt and
    PaymentRefNum while leaving the rest of the payment intact. The SyncToken is
    chained from the read into the update because QuickBooks rejects updates that
    omit the latest token. 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-payments-api-openapi.yml
      confidence: 0.78
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: paymentsApi
  url: ../openapi/intuit-payments-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-payment-amount
  summary: Read a payment then sparse-update its total amount and reference.
  description: >-
    Reads a Payment for its SyncToken and applies a sparse update that sets a new
    TotalAmt and PaymentRefNum.
  inputs:
    type: object
    required:
    - accessToken
    - paymentId
    - newTotalAmt
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the QuickBooks company.
      paymentId:
        type: string
        description: Id of the payment to update.
      newTotalAmt:
        type: number
        description: The corrected total amount of the payment.
      paymentRefNum:
        type: string
        description: Optional new payment reference number.
  steps:
  - stepId: readPayment
    description: Read the payment to obtain its current Id and SyncToken.
    operationId: readPayment
    parameters:
    - name: paymentId
      in: path
      value: $inputs.paymentId
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      paymentId: $response.body#/Payment/Id
      syncToken: $response.body#/Payment/SyncToken
      oldTotalAmt: $response.body#/Payment/TotalAmt
  - stepId: updatePayment
    description: Apply a sparse update setting the new total and reference number.
    operationId: updatePayment
    parameters:
    - name: paymentId
      in: path
      value: $steps.readPayment.outputs.paymentId
    - name: sparse
      in: query
      value: true
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        Id: $steps.readPayment.outputs.paymentId
        SyncToken: $steps.readPayment.outputs.syncToken
        sparse: true
        TotalAmt: $inputs.newTotalAmt
        PaymentRefNum: $inputs.paymentRefNum
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      paymentId: $response.body#/Payment/Id
      newTotalAmt: $response.body#/Payment/TotalAmt
      syncToken: $response.body#/Payment/SyncToken
  outputs:
    paymentId: $steps.updatePayment.outputs.paymentId
    oldTotalAmt: $steps.readPayment.outputs.oldTotalAmt
    newTotalAmt: $steps.updatePayment.outputs.newTotalAmt

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-update-payment-amount-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.