business.removeBankAccount
Remove the association between a Bank Account and a Business entity.
POST http://api.kompliant.com/business.removeBankAccount (OpenAPI specification)
Usage Info
This method terminates the relationship between a Bank Account and a Business entity. Use this when financial relationships change, such as when accounts are closed or reassigned to different purposes. This operation affects only the relationship, not the underlying Bank Account entity, which remains in the Subject Record.
Request
Authentication: KSig1-HMAC-SHA256
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| business_bank_account_id | string | Yes | The ID of the Business Bank Account. |
Example
{
"business_bank_account_id": "bba_79HaMs4zgYfilF3xQuJy3J"
}
Response
Data
An empty data object is returned when the removal is successful.
Example
{
"meta": {
"status": "SUCCESS",
"trace_id": "trc_6NczMo5xTU9BWTEO6RlPBc",
"version": "2025-03-24"
},
"data": {}
}
Errors
| Error Code | HTTP Code | Possible Cause |
|---|---|---|
| BAD_REQUEST | 400 | Required parameters not provided. Invalid values provided. |
| ENTITY_NOT_FOUND | 400 | The business_id provided does not exist. |
Updated 7 months ago