Skip to content

List All Secrets

Endpoint: POST /api/secrets

Retrieves all secret names from your Conductor cluster.

Response

Returns an array of secret names (strings).

Examples

List all secrets

Request

curl -X 'POST' \
  'https://<YOUR-SERVER-URL>/api/secrets' \
  -H 'accept: application/json' \
  -H 'X-Authorization: <TOKEN>' \
  -d ''

Response

[
  "slack-secret",
  "atlassian-token",
  "payment_api_token",
  "sendgrid_api_key",
  "openai_api_key",
  "github_token"
]