DELETE /secrets/{name}
Delete a secret by name.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| DELETE | /v1/secrets/{name} |
Refused for sandbox tokens; mutations require an API key or user token.
Path parameters
namestringrequired
curl -X DELETE "https://api.ellipsis.dev/v1/secrets/{name}" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.secrets.delete(
"...",
)
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.secrets.delete('...');
console.log(result);