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

# Delete from vault

> Allows the client to delete an item from its vault.

## Overview

Allows the client to delete an item from its vault. It is only possible to delete items that have been stored using the same account.

## HTTP request

`POST /Agent/Storage/DeleteFromVault`

## Authentication

Requires a valid JWT bearer token.

## Request (JSON)

```json theme={null}
{
	"vaultId": Required(Str(PVaultId))
}
```

## Input parameters

| Parameter | Description                             |
| --------- | --------------------------------------- |
| PVaultId  | Identifier of the vault item to delete. |

## Response (JSON)

```json theme={null}
{
}
```

## Notes

This endpoint uses the request schema notation described in [Pattern matching](/guides/pattern-matching).
