v5

latestOpenAPI 3.1.02026-08-025631,1012.8 MB
Organization Secrets

List Secrets

List all secret names in organization vault.

Security:

  • Returns ONLY secret names, never values
  • Use for discovering which secrets are configured
  • Secret values can only be retrieved by internal services

Response:

  • List of secret names (e.g., ['stripe_api_key', 'github_token'])
  • Total count of secrets
get/v1/organizations/secrets

Response

Successful Response

secretsstring[] required

List of secret names in the organization vault. Only names are returned, never decrypted values. Use these names as references in api_call stage configuration. Names are unique within the organization. Empty list if no secrets are configured.

countinteger required

Total number of secrets in the organization vault. This is the length of the secrets array. Useful for monitoring and auditing secret inventory.

Example response

{
  "count": 4,
  "description": "Organization with multiple API keys configured",
  "secrets": [
    "stripe_api_key",
    "github_token",
    "openai_api_key",
    "weather_api_key"
  ]
}