GET /bff/gateway/admin/env-vars
Return all environment variables loaded from .env/.env.local, sensitive values are automatically masked (super_admin access only)
Gateway - Operations `bearerAuth` application/json
Responses
| Status | Description | Schema |
| 200 | Environment variable list | dto.EnvVarsResult |
| 400 | Invalid request parameters | object |
| 401 | Unauthenticated | object |
| 403 | Insufficient permissions | object |
| 500 | Internal server error | object |
Referenced Schemas
dto.EnvVarEntry
| Field | Type | Required | Example | Constraints | Description |
category |
string |
No |
|
|
|
key |
string |
No |
|
|
|
masked |
boolean |
No |
|
|
|
source |
string |
No |
|
|
|
value |
string |
No |
|
|
|
dto.EnvVarsResult
| Field | Type | Required | Example | Constraints | Description |
total |
integer |
No |
|
|
|
variables |
array of
See dto.EnvVarEntry |
No |
|
|
|