Intuit · Arazzo Workflow

Intuit Reprice Item

Version 1.0.0

Read an item and apply a new unit price via a sparse update.

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

Provider

intuit

Workflows

reprice-item
Read an item then sparse-update its unit price.
Reads an Item for its SyncToken and applies a sparse update that sets a new UnitPrice.
2 steps inputs: accessToken, itemId, newUnitPrice outputs: itemId, newUnitPrice, oldUnitPrice
1
readItem
Read the item to obtain its current SyncToken and price.
2
updateItem
Apply a sparse update that changes only the unit price.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Intuit Reprice Item
  summary: Read an item and apply a new unit price via a sparse update.
  description: >-
    A targeted catalog maintenance flow. The workflow reads an Item to capture
    its current SyncToken, then performs a sparse update that changes only the
    UnitPrice while leaving every other field 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
sourceDescriptions:
- name: itemsApi
  url: ../openapi/intuit-items-api-openapi.yml
  type: openapi
workflows:
- workflowId: reprice-item
  summary: Read an item then sparse-update its unit price.
  description: >-
    Reads an Item for its SyncToken and applies a sparse update that sets a new
    UnitPrice.
  inputs:
    type: object
    required:
    - accessToken
    - itemId
    - newUnitPrice
    properties:
      accessToken:
        type: string
        description: OAuth 2.0 bearer access token for the QuickBooks company.
      itemId:
        type: string
        description: Id of the item to reprice.
      newUnitPrice:
        type: number
        description: The new unit price to set on the item.
  steps:
  - stepId: readItem
    description: Read the item to obtain its current SyncToken and price.
    operationId: readItem
    parameters:
    - name: itemId
      in: path
      value: $inputs.itemId
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      itemId: $response.body#/Item/Id
      syncToken: $response.body#/Item/SyncToken
      oldUnitPrice: $response.body#/Item/UnitPrice
  - stepId: updateItem
    description: Apply a sparse update that changes only the unit price.
    operationId: updateItem
    parameters:
    - name: itemId
      in: path
      value: $steps.readItem.outputs.itemId
    - name: sparse
      in: query
      value: true
    - name: Authorization
      in: header
      value: "Bearer $inputs.accessToken"
    requestBody:
      contentType: application/json
      payload:
        Id: $steps.readItem.outputs.itemId
        SyncToken: $steps.readItem.outputs.syncToken
        sparse: true
        UnitPrice: $inputs.newUnitPrice
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      itemId: $response.body#/Item/Id
      newUnitPrice: $response.body#/Item/UnitPrice
      syncToken: $response.body#/Item/SyncToken
  outputs:
    itemId: $steps.updateItem.outputs.itemId
    oldUnitPrice: $steps.readItem.outputs.oldUnitPrice
    newUnitPrice: $steps.updateItem.outputs.newUnitPrice

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