Get plugin ecosystem enablement
GET
/plugins/settings
const url = 'https://example.com/api/v1/plugins/settings';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/plugins/settingsReturns the global UI-backed master switch for the plugin ecosystem. Default is off. Navigation remains available regardless of this flag.
Responses
Section titled “Responses”Current plugin ecosystem enablement
Media typeapplication/json
Global plugin-ecosystem enablement (UI-backed master switch; default off).
object
pluginsEnabled
required
When false, plugin management/reload/observe are hard no-ops. Nav remains visible.
boolean
Examplegenerated
{ "pluginsEnabled": true}Failed to read plugin settings
Media typeapplication/json
object
code
required
Stable management failure code; raw filesystem/database diagnostics are never returned.
string
error
required
string
Example
{ "code": "invalid_identity"}