Skip to main content
PATCH
/
transactions
Batch update transactions
curl --request PATCH \
  --url https://api.breezing.io/v1/transactions \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    123
  ],
  "updates": {
    "account": "<string>",
    "assetAccount": "<string>",
    "feeAssetAccount": "<string>",
    "type": "<string>",
    "note": "<string>",
    "accountingDescription": "<string>",
    "vat": "<string>",
    "isSpam": true,
    "extraLabel": "<string>",
    "skipNgl": true,
    "skipNglReason": "<string>",
    "qboClass": "<string>",
    "xeroTrackingCategory": "<string>"
  }
}
'
{
  "success": true,
  "data": {
    "updated": 123,
    "dedupedFrom": 123
  }
}

Query Parameters

orgId
string
required

Organization ID. Use GET /v1/companies to discover available org/company pairs.

Example:

"1"

companyId
string
required

Company ID. Use GET /v1/companies to discover available companies and their access levels.

Example:

"1"

Body

application/json
ids
integer[]
required

Transaction IDs to update (max 500)

Required array length: 1 - 500 elements
updates
object
required

Fields to update

Response

Transactions updated successfully

success
enum<boolean>
required
Available options:
true
data
object
required
Last modified on April 12, 2026