> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.hopnow.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable Virtual Account

> Disable a virtual account so that no future credits are accepted on it

Disables a virtual account so that no future credits are accepted on it. No request body. Returns the updated virtual-account object with `status` set to `revoked`.

## Path Parameters

<ParamField path="id" type="string" required>
  Virtual account id (`va_…`).
</ParamField>

## Response

<ResponseField name="status" type="string">
  Set to `revoked` after a successful disable. All other fields are unchanged — see Get Virtual Account for the full field reference.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
