# Sign the request first — see Authentication for x-timestamp, x-nonce and x-signature
curl -X POST "https://api.sbx.hopnow.io/va/v1/accounts/acct_3mnq7c1e6a2b4f3c9b8d2e5a/virtual-accounts/va_7yq2m9p4q1w8e5r3t6y0u2i4/disable" \
-H "x-api-key: $API_KEY" \
-H "x-timestamp: $TIMESTAMP" \
-H "x-nonce: $NONCE" \
-H "x-signature: $SIGNATURE"
{
"id": "va_7yq2m9p4q1w8e5r3t6y0u2i4",
"object": "virtual_account",
"account_id": "acct_3mnq7c1e6a2b4f3c9b8d2e5a",
"currency": "EUR",
"status": "revoked",
"beneficiary_name": "Acme GmbH",
"bank_name": "Partner Bank",
"account_number": "DE89370400440532013000",
"iban": "DE89370400440532013000",
"swift_bic": "PBNKDEFF",
"routing_number": null,
"sort_code": null,
"supported_rails": ["sepa", "swift"],
"balance": "12500.00",
"pending_deposit": "300.00",
"held_for_payment": "1200.00",
"total_balance": "14000.00",
"created": "2026-05-01T10:05:00Z",
"updated": "2026-05-20T08:00:00Z"
}
Virtual Accounts
Disable Virtual Account
Disable a virtual account so that no new deposit instructions should be shared
POST
/
va
/
v1
/
accounts
/
{account_id}
/
virtual-accounts
/
{virtual_account_id}
/
disable
# Sign the request first — see Authentication for x-timestamp, x-nonce and x-signature
curl -X POST "https://api.sbx.hopnow.io/va/v1/accounts/acct_3mnq7c1e6a2b4f3c9b8d2e5a/virtual-accounts/va_7yq2m9p4q1w8e5r3t6y0u2i4/disable" \
-H "x-api-key: $API_KEY" \
-H "x-timestamp: $TIMESTAMP" \
-H "x-nonce: $NONCE" \
-H "x-signature: $SIGNATURE"
{
"id": "va_7yq2m9p4q1w8e5r3t6y0u2i4",
"object": "virtual_account",
"account_id": "acct_3mnq7c1e6a2b4f3c9b8d2e5a",
"currency": "EUR",
"status": "revoked",
"beneficiary_name": "Acme GmbH",
"bank_name": "Partner Bank",
"account_number": "DE89370400440532013000",
"iban": "DE89370400440532013000",
"swift_bic": "PBNKDEFF",
"routing_number": null,
"sort_code": null,
"supported_rails": ["sepa", "swift"],
"balance": "12500.00",
"pending_deposit": "300.00",
"held_for_payment": "1200.00",
"total_balance": "14000.00",
"created": "2026-05-01T10:05:00Z",
"updated": "2026-05-20T08:00:00Z"
}
Disables a virtual account: no new deposit instructions should be shared for it. In-flight and stray deposits arriving on existing rails are still credited and flagged until bank-side closure completes. No request body. Returns the updated virtual-account object with
status set to revoked.
Path Parameters
string
required
Account id (
acct_…) that owns the virtual account.string
required
Virtual account id (
va_…).Response
string
Set to
revoked after a successful disable. All other fields are unchanged — see Get Virtual Account for the full field reference.# Sign the request first — see Authentication for x-timestamp, x-nonce and x-signature
curl -X POST "https://api.sbx.hopnow.io/va/v1/accounts/acct_3mnq7c1e6a2b4f3c9b8d2e5a/virtual-accounts/va_7yq2m9p4q1w8e5r3t6y0u2i4/disable" \
-H "x-api-key: $API_KEY" \
-H "x-timestamp: $TIMESTAMP" \
-H "x-nonce: $NONCE" \
-H "x-signature: $SIGNATURE"
{
"id": "va_7yq2m9p4q1w8e5r3t6y0u2i4",
"object": "virtual_account",
"account_id": "acct_3mnq7c1e6a2b4f3c9b8d2e5a",
"currency": "EUR",
"status": "revoked",
"beneficiary_name": "Acme GmbH",
"bank_name": "Partner Bank",
"account_number": "DE89370400440532013000",
"iban": "DE89370400440532013000",
"swift_bic": "PBNKDEFF",
"routing_number": null,
"sort_code": null,
"supported_rails": ["sepa", "swift"],
"balance": "12500.00",
"pending_deposit": "300.00",
"held_for_payment": "1200.00",
"total_balance": "14000.00",
"created": "2026-05-01T10:05:00Z",
"updated": "2026-05-20T08:00:00Z"
}