v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBBank Accounts
Update Bank Account
Update an existing bank account.
post/v2/payment/bankaccount/{id}
Path parameters
idstring uuid required
Example:a7b92a19-bfc3-4c8b-8a4f-cfcf74cab345
Unique identifier (UUID) of the bank account.
Headers
x-on-behalf-ofstring
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
x-idempotency-keystring uuid
A unique identifier (UUID) used to maintain operation idempotency, ensuring that repeated executions of the same operation do not result in unintended effects or duplication. It helps preserve data consistency in the face of network errors, retries, or failures.
Request body
Example request
{
"account_number": "GB71950018692652646598",
"bank_name": "DBS Bank",
"swift_code": "DBSSSGSG",
"bank_country_code": "SG",
"bank_address": "12 Marina Boulevard, Singapore 018982",
"bank_code_type": "aba",
"bank_code_value": "021000021",
"bank_branch_code": "00001"
}Response
Bank account updated successfully
Example response
{
"account_number": "GB71950018692652646598",
"bank_name": "DBS Bank",
"swift_code": "DBSSSGSG",
"bank_country_code": "SG",
"bank_address": "12 Marina Boulevard, Singapore 018982",
"bank_code_type": "aba",
"bank_code_value": "021000021",
"bank_branch_code": "00001",
"id": "a7b92a19-bfc3-4c8b-8a4f-cfcf74cab345",
"account_name": "UQPAY PTE. LTD.",
"account_status": "Valid"
}