shareSettings Data Type

Global Share Settings.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs wrapped by description
allow_sharing_with_ldap_groups boolean element 0/1   Whether or not users can share with LDAP groups.
external_restrictions externalSharingRestrictions element 0/1   Restricts sharing with external users by email address or email domain.
permission assignedSharingPermission element 0/unbounded sharing_permissions List of users and groups who have been assigned permissions to share.
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 Links to related resources. These should be used to navigate the REST API (instead of hard-coding the URLs)

Example

<share_settings>
  <allow_sharing_with_ldap_groups>...</allow_sharing_with_ldap_groups>
  <sharing_permissions>
    <permission>
      <principal>
        <type>...</type>
      </principal>
      <sharing>
        <external>...</external>
        <internal>...</internal>
        <all_internal>...</all_internal>
        <all_external>...</all_external>
        <public>...</public>
        <public_link>...</public_link>
        <grant_reshare>...</grant_reshare>
      </sharing>
    </permission>
  </sharing_permissions>
  <external_restrictions>
    <mode>...</mode>
    <email_list>
      <email>...</email>
    </email_list>
    <domain_list>
      <domain>...</domain>
    </domain_list>
    <href>...</href>
    <links>
      <link/>
    </links>
  </external_restrictions>
  <href>...</href>
  <links>
    <link>
      <href>...</href>
      <rel>...</rel>
    </link>
  </links>
</share_settings>