webAppConfig Data Type

The Web Application settings.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
allow_downloads boolean element 0/1 Whether or not users can download files from the web application.
allow_guest_access boolean element 0/1 Whether or not guest access is enabled. Must be true for users to share publicly.
enabled boolean element 0/1 Whether or not the web application is enabled.
read_only_guest boolean element 0/1 Whether or not guest access is limited to read-only.
Properties inherited from baseRestObject
href string element 0/1 The path to this resource object. This is relative to the root of the REST API (https://serveraddress/rest).
link link element 0/unbounded Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

<web_app_config>
  <enabled>...</enabled>
  <allow_guest_access>...</allow_guest_access>
  <read_only_guest>...</read_only_guest>
  <allow_downloads>...</allow_downloads>
  <href>...</href>
  <links>
    <link>
      <href>...</href>
      <rel>...</rel>
    </link>
  </links>
</web_app_config>