ZoneConfig Data Type

The system settings for the authenticated user.

Properties
name data type description
id number The ID of the zone. Vibe supports multiple zones. Filr only supports one zone.
guid string A GUID that can be used to uniquely identify this system.
disk_quotas DiskQuotasConfig The user's effective disk quota settings.
desktop_app_config DesktopAppConfig The user's effective desktop application settings.
mobile_app_config MobileAppConfig The user's effective mobile application settings,
file_upload_size_limit number 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.
allow_sharing_with_ldap_groups boolean Whether or not the use is allowed to share with groups imported from LDAP.
external_sharing_restrictions ExternalSharingRestrictions Defines which email addresses are allowed or denied when sharing with external users.
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

{
  "id" : 12345,
  "guid" : "...",
  "disk_quotas" : {
    "highwater_percentage" : 12345,
    "user_default" : 12345
  },
  "desktop_app_config" : {
    "auto_update_url" : "...",
    "allow_cached_password" : true,
    "max_file_size" : 12345,
    "sync_interval" : 12345,
    "process_config" : {
      "allow_unlisted_processes" : true,
      "allow_unlisted_process_override" : true,
      "allowed_processes" : [ "...", "..." ],
      "blocked_processes" : [ "...", "..." ],
      "href" : "...",
      "links" : [ { }, { } ]
    }
  },
  "mobile_app_config" : {
    "allow_cached_password" : true,
    "allow_cached_content" : true,
    "force_pin_code" : true,
    "sync_interval" : 12345,
    "allow_cut_copy" : true,
    "allow_screen_capture" : true,
    "allow_rooted_devices" : true,
    "allowed_open_in_apps" : "...",
    "android_app_whitelist" : [ "...", "..." ],
    "ios_app_whitelist" : [ "...", "..." ]
  },
  "file_upload_size_limit" : 12345,
  "allow_sharing_with_ldap_groups" : true,
  "external_sharing_restrictions" : {
    "mode" : "...",
    "email_list" : [ "...", "..." ],
    "domain_list" : [ "...", "..." ],
    "href" : "...",
    "links" : [ {
      "href" : "...",
      "rel" : "..."
    }, {
      "href" : "...",
      "rel" : "..."
    } ]
  },
  "href" : "...",
  "links" : [ {
    "href" : "...",
    "rel" : "..."
  }, {
    "href" : "...",
    "rel" : "..."
  } ]
}