
Managing Secrets
Adding a Secret
Enter Name and Value
Provide a name (used to reference the secret in modules) and the secret value. Names must contain only letters, numbers, hyphens, and underscores.

Using Secrets in Modules
Modules can reference organization secrets by name. When a module executes, the platform injects the requested secrets into the module’s runtime environment.Using Secrets in Service Bridges
Service Bridges can reference organization secrets for authentication headers. When a service bridge proxies a request, the platform resolves any secret references and injects the values into the outgoing request headers.Secrets API
Secrets are managed through the organization-scoped API:| Operation | Endpoint |
|---|---|
| List secret names | GET /api/organizations/{orgId}/secrets |
| Create or update | POST /api/organizations/{orgId}/secrets |
| Delete | DELETE /api/organizations/{orgId}/secrets/{secretName} |
Secret values can only be retrieved by the platform during module execution (via execution tokens). The API does not expose secret values to regular users.

