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

# Delete Secret

> Remove a stored secret by name

Permanently removes a secret from the vault. Any feature config still
referencing `vault:<name>` resolves to empty afterwards — update those configs
first.

## Path Parameters

<ParamField path="name" type="string" required>
  The secret name, as returned by List Secrets.
</ParamField>

## Examples

```bash cURL theme={null}
curl --request DELETE \
  --url "https://api.kardow.com/secrets/pdl_api_key" \
  --header "x-api-key: your-api-key-here"
```

## Response

```json theme={null}
{
  "data": { "deleted": true }
}
```
