Organization Setting object
The organization-setting
object represents a configurable setting within your Cirrus Insight organization. Each setting includes metadata about its purpose, default value, and whether users can override the organization-wide setting. Organization settings are typically managed through the Cirrus Insight admin panel and changes can be tracked through webhooks.
The Organization Setting schema
json
{
"setting": {
"module": "",
"name": "",
"default": "",
"title": "",
"helpText": ""
},
"value": "",
"allowUserOverride": true
}
Fields
setting
object
Metadata about the organization setting.
child attributes
Attribute | Type | Description |
---|---|---|
module | string | The system module this setting belongs to. |
name | string | The unique identifier for this setting. |
default | string | The default value for this setting. |
title | string | A human-readable title for the setting. |
helpText | string | Additional description text explaining the setting's purpose. |
value
string
The current value of the setting for your organization.
allowUserOverride
boolean
A flag indicating whether individual users can override this setting with their own value.
Related Events
The organization setting is used in the following webhook events:
organization.setting.changed
- Sent when an organization setting is modified