Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all configuration variables for the organisation. Values are masked for security — only the last 4 characters are visible (high-secret keys are fully masked). This is the advanced key-value store for secrets and integration keys. For common settings, use GET /organisation/profile instead.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredConfiguration variables ordered by key.
keystringRequiredConfiguration key identifier.
valuePreviewstringRequiredMasked value preview (e.g. "****abcd").
valueLengthnumberRequiredLength of the actual (unmasked) value.
expirationDatestringOptionalISO date when the value expires, if set.
expiredbooleanRequiredWhether the value has expired.
{
"items": [
{
"key": "example_key",
"valuePreview": "example_valuePreview",
"valueLength": 0,
"expirationDate": "example_expirationDate",
"expired": false
}
]
}GET /bff/settings/env-variables
curl -X GET "https://api.bizkithub.com/bff/settings/env-variables" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.