For the complete documentation index, see llms.txt. This page is also available as Markdown.

delete_secret

Delete a project secret.

Delete a secret. The name is case-sensitive.

Request

DELETE /api/v1/ops/projects/{project}/secrets/{name}
Parameter
In
Type
Required
Description

project

path

string

yes

The project's public id.

name

path

string

yes

The secret name (case-sensitive).

curl -X DELETE -H "Authorization: Bearer $TESTVIBE_API_KEY" \
  "$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/secrets/MAILSLURP_API_KEY"
testvibe secrets delete MAILSLURP_API_KEY

Tool delete_secret — required name, optional project. Destructive.

Response

{ "ok": true, "name": "MAILSLURP_API_KEY" }

Errors

HTTP
When

404 not_found

No such project, or no secret with that name.

Last updated

Was this helpful?