Skip to main content
DELETE
/
api
/
v1
/
secrets
/
{key}
Delete a secret
curl --request DELETE \
  --url http://localhost:4000/api/v1/secrets/{key} \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "code": "<string>",
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

key
string
required

Response

Secret deleted

Last modified on March 31, 2026