Skip to main content
Delete a Bank Account
curl --request DELETE \
  --url https://api.spherepay.co/v2/bank-account/{id} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true
}
Use this endpoint to permanently remove a registered bank account from SpherePay. Once deleted, the account ID can no longer be used in transfer requests. You cannot delete a bank account that has pending or active transfers associated with it.
This action is irreversible. Ensure you have no active or pending transfers referencing this bank account before deleting it.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The bank account ID

Minimum string length: 1
Example:

"bankAccount_ce745ef7f3df4b9a8bff1301ce24b045"

Response

ok
boolean
required

Indicates whether the deletion was successful

Example:

true

Last modified on June 18, 2026