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

# Delete a preset

> Delete a preset and every attachment it had. Its rules stop applying everywhere at once.

Save the name again later and its caps count from nothing. Takes a platform access token or an API key. See [Set rules on a card](/vault/set-rules-on-a-card).

<ParamField path="name" type="string" required>The preset's name.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://api.agentcard.sh/api/v2/vault/presets/office-supplies \
    -H "Authorization: Bearer $ORG_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  { "object": "vault_preset", "name": "office-supplies", "deleted": true }
  ```
</ResponseExample>

**Errors.** `404 preset_not_found` when no preset of that name is saved.
