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

# Delete Virtual Account

> Permanently delete a virtual account

Permanently deletes a virtual account. This action is irreversible.

```
DELETE /v1/business/virtual-account/delete-virtual-account/{account_id}
```

## Path Parameters

<ParamField path="account_id" type="string" required>
  The ID of the virtual account to delete.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE 'https://api.yativo.com/api/v1/business/virtual-account/delete-virtual-account/acct_xxxxxx' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "status_code": 200,
    "message": "Virtual account deleted successfully",
    "data": null
  }
  ```
</ResponseExample>

<Warning>
  Deleting a virtual account is permanent and cannot be undone. Ensure any pending transactions are resolved before deleting.
</Warning>
