v1
latestOpenAPI 3.1.02026-07-24111224223.3 KBBank Transactions
Updates a bank transaction
Adjusts memo, categorization, or reconciliation metadata on an existing bank transaction without re-importing the entire feed batch. Supply the full body expected by the schema so optional fields you intend to keep are not unintentionally cleared.
put/bank-transactions/{bank_transaction_id}
Path parameters
bank_transaction_idstring required
UUID of the bank transaction to be used in this operation.
Request body
Example request
{
"net_amount": {
"amount": "1.01",
"currency": "USD"
},
"fee": {
"amount": "1.01",
"currency": "USD"
},
"external_references": [
{
"type": "xyzSystemId",
"id": "234",
"url": "https://xyzsystempage.com/ids/234"
}
]
}Response
OK
Example response
{
"net_amount": {
"amount": "1.01",
"currency": "USD"
},
"fee": {
"amount": "1.01",
"currency": "USD"
},
"external_references": [
{
"type": "xyzSystemId",
"id": "234",
"url": "https://xyzsystempage.com/ids/234"
}
]
}