Sign in

Update transactions

documented

Update multiple transactions.

PATCH /budgets/{budget_id}/transactionsTransactionsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.ynab.com/v1/budgets/{{$budget_id}}/transactions" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"transactions": [{"id": "{{$transaction_id}}", "amount": {{$amount}}, "memo": "{{$memo}}", "category_id": "{{$category_id}}", "payee_id": "{{$payee_id}}", "date": "{{$date}}", "cleared": "{{$cleared}}", "approved": {{$approved}}}]}'