Sign in

Get bank transaction

documented

Retrieve a bank transaction.

GET /BankTransactions/{BankTransactionID}Bank Transactionsno 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/BankTransactions/{{$BankTransactionID}}" \
  -X GET \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Xero-Tenant-Id: {{$XERO_TENANT_ID}}" \

# Sources: GET /BankTransactions/{BankTransactionID} documented in Xero Accounting API (BankTransaction get) (turn0search1); Base URL is https://api.xero.com/api.xro/2.0/ (turn7search6); Xero-Tenant-Id header usage (turn7search0); Authorization header usage (turn7search4)
Get bank transaction · Xero · OpenIntegrations