zoneConfig Data Type

The system settings for the authenticated user.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
allow_sharing_with_ldap_groups boolean element 0/1 Whether or not the use is allowed to share with groups imported from LDAP.
desktop_app_config desktopAppConfig element 0/1 The user's effective desktop application settings.
disk_quotas diskQuotasConfig element 0/1 The user's effective disk quota settings.
external_sharing_restrictions externalSharingRestrictions element 0/1 Defines which email addresses are allowed or denied when sharing with external users.
file_upload_size_limit long element 0/1 The user's file upload size limit, in bytes. This is the maximum file size that the user can upload to Filr from any client. May be null if no size limit has been configured.
guid string element 0/1 A GUID that can be used to uniquely identify this system.
id long element 0/1 The ID of the zone. Vibe supports multiple zones. Filr only supports one zone.
mobile_app_config mobileAppConfig element 0/1 The user's effective mobile application settings,
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

<zone_config>
  <id>...</id>
  <guid>...</guid>
  <disk_quotas>
    <highwater_percentage>...</highwater_percentage>
    <user_default>...</user_default>
  </disk_quotas>
  <desktop_app_config>
    <auto_update_url>...</auto_update_url>
    <allow_cached_password>...</allow_cached_password>
    <max_file_size>...</max_file_size>
    <sync_interval>...</sync_interval>
    <process_config>
      <allow_unlisted_processes>...</allow_unlisted_processes>
      <allow_unlisted_process_override>...</allow_unlisted_process_override>
      <allowed_processes>
        <name>...</name>
      </allowed_processes>
      <blocked_processes>
        <name>...</name>
      </blocked_processes>
    </process_config>
  </desktop_app_config>
  <mobile_app_config>
    <allow_cached_password>...</allow_cached_password>
    <allow_cached_content>...</allow_cached_content>
    <force_pin_code>...</force_pin_code>
    <sync_interval>...</sync_interval>
    <allow_cut_copy>...</allow_cut_copy>
    <allow_screen_capture>...</allow_screen_capture>
    <allow_rooted_devices>...</allow_rooted_devices>
    <allowed_open_in_apps>...</allowed_open_in_apps>
    <android_app_whitelist>
      <app>...</app>
    </android_app_whitelist>
    <ios_app_whitelist>
      <app>...</app>
    </ios_app_whitelist>
  </mobile_app_config>
  <file_upload_size_limit>...</file_upload_size_limit>
  <allow_sharing_with_ldap_groups>...</allow_sharing_with_ldap_groups>
  <external_sharing_restrictions>
    <mode>...</mode>
    <email_list>
      <email>...</email>
    </email_list>
    <domain_list>
      <domain>...</domain>
    </domain_list>
    <href>...</href>
    <links>
      <link/>
    </links>
  </external_sharing_restrictions>
  <href>...</href>
  <links>
    <link>
      <href>...</href>
      <rel>...</rel>
    </link>
  </links>
</zone_config>