Sign in

Update bank transfer

documented

Update a bank transfer.

PUT /BankTransfers/{BankTransferID}Bank Transfersno 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.xero.com/api.xro/2.0/BankTransfers/{{$BankTransferID}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "xero-tenant-id: {{$tenant_id}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"BankTransfers": [{"BankTransferID": "{{$BankTransferID}}", "FromBankAccount": {"Code": "{{$FromBankAccountCode}}"}, "ToBankAccount": {"Code": "{{$ToBankAccountCode}}"}, "Date": "{{$Date}}", "Amount": {{$Amount}}}]}'
Update bank transfer · Xero · OpenIntegrations