Skip to main content
DELETE
/
v1
/
orgs
/
{orgId}
/
secrets
/
{secretName}
Delete organization secret
curl --request DELETE \
  --url https://api.ryvn.app/v1/orgs/{orgId}/secrets/{secretName} \
  --header 'Authorization: Bearer <token>'
This response has no body data.

Authorizations

Authorization
string
header
required

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

Path Parameters

orgId
string
required

The unique identifier of the organization

Example:

"123456789012345678"

secretName
string
required

The name of the secret to operate on

Maximum string length: 63
Pattern: ^[a-zA-Z][a-zA-Z0-9_-]*$
Example:

"database-config"

Response