WebAppConfig Data Type

The Web Application settings.

Properties
name data type description
allow_downloads boolean Whether or not users can download files from the web application.
allow_guest_access boolean Whether or not guest access is enabled. Must be true for users to share publicly.
enabled boolean Whether or not the web application is enabled.
read_only_guest boolean Whether or not guest access is limited to read-only.
Properties inherited from BaseRestObject
href string The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest).
links array of Link Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

{
  "enabled" : true,
  "allow_guest_access" : true,
  "read_only_guest" : true,
  "allow_open_id" : true,
  "allow_downloads" : true,
  "href" : "...",
  "links" : [ {
    "href" : "...",
    "rel" : "..."
  }, {
    "href" : "...",
    "rel" : "..."
  } ]
}