Settings
Settings
represent options that a place admin may
manipulate to affect the presentation of a place. Currently options
for Activity and Overview tab visibility are supported. An example
JSON representation looks like this:
{ "activityTab": true, "overviewTab": false, "defaultTab": "activityTab", "headerSettings" : { "bgPresetImageUrl" : "", "bgRepeat" : "repeat", "bgPosition" : "left top", "bgType" : "preset", "staticResourcesEnabled" : false } }
Note that one or both of activityTab
or
overviewTab
must be true and the value for
defaultTab
must be either "activityTab"
or
"overviewTab"
Example:
Update Settings
PUT to /places/{placeID}/settings applies new settings. You must include a complete set of settings.
Fields
Field | Type | Mode † | Description |
---|---|---|---|
activityTab | Boolean | required | Enables or disables the Activity tab in Groups, Spaces, and Projects. |
defaultTab | String | required | A user visiting a place is directed first to either the Activity tab or the Overview tab. This setting determines which. |
headerSettings | HeaderSettings | optional | An object representing the visual characteristics of the header banner applied to a place. Since: 3.9 |
id | String | read-only | Identifier (unique within an object type and Jive instance) of this object. |
overviewTab | Boolean | required | Enables or disables the Overview tab in Groups, Spaces, and Projects. |
place | String | read-only | URI of the place where this category belongs. |
resources | Object | read-only | Resource links (and related permissions for the requesting person) relevant to this object. |