Skip to main content
DELETE
https://apis.hopnow.io
/
v1
/
accounts
/
{account_id}
/
virtual-accounts
/
{virtual_account_id}
Delete Virtual Account
curl --request DELETE \
  --url https://apis.hopnow.io/v1/accounts/{account_id}/virtual-accounts/{virtual_account_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "deleted": true
}
After deletion, the virtual account’s banking details will no longer accept incoming payments.

Path Parameters

account_id
string
required
The account’s external ID (starts with acc_)
virtual_account_id
string
required
The virtual account’s external ID (starts with va_)

Response

id
string
The virtual account identifier that was deactivated
object
string
Always returns "virtual_account"
deleted
boolean
Always returns true

Response Example

{
  "id": "va_1234567890abcdef",
  "object": "virtual_account",
  "deleted": true
}