Skip to content
OpenPostDocs
OpenPostDocs
Admin

List administrator-managed instance settings

Returns the typed optional configuration registry. Secrets are redacted. Administrator overrides take precedence over environment values after restart, while the configured environment source remains visible as the fallback.

GET/admin/instance-settings

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

application/problem+json

curl -X GET "https://example.com/admin/instance-settings"
{  "$schema": "https://example.com/api/v1/schemas/InstanceSettingsResponse.json",  "requires_restart": true,  "settings": [    {      "configured": true,      "database_override_configured": true,      "description": "string",      "editable": true,      "environment_variables": [        "string"      ],      "group": "string",      "key": "string",      "label": "string",      "managed_by": "string",      "optional": true,      "options": [        {          "label": "string",          "value": "string"        }      ],      "requires_restart": true,      "secret": true,      "secret_configured": true,      "source": "environment",      "type": "boolean",      "updated_at": "string",      "value": "string"    }  ]}