XML Parameters for Owners

The following table lists the supported parameters for client owners.

Parameter

Description of Parameter Values

clientName

The name of the client.

categoriesPermissionOperationType

The operation to perform on the client owner permissions in the permissionName parameter.

Valid values are:

  • ADD, to add a new permission to the client owner

  • OVERWRITE, to overwrite existing permissions

  • DELETE, to delete one or more permissions

permissionName

The name of the client owner permission operated on by the categoriesPermissionOperationType parameter.

To work with multiple permissions, add the following elements in the XML file for each permission:

<categoriesPermissionList>
   <permissionName></permissionName>
</categoriesPermissionList>

For a list of valid values, see User Security Permissions and Permitted Actions.

ownersOperationType

The operation to perform on the client owners in the userGroupName and userName parameters inside the <ownerAssociations> block.

Valid values are:

  • ADD, to add a new client owner to the client

  • OVERWRITE, to overwrite existing client owners

  • DELETE, to delete one or more client owners

userGroupName

The name of the user group operated on by the ownersOperationType parameter. To add multiple user groups, add the following elements in the XML file for each user group:

<owners>
   <userGroupName></userGroupName>
</owners>

A mix of users and user groups can be added as client owners, for example:

<owners>
   <userName>jdoe</userName>
</owners>
<owners>
   <userGroupName>support</userGroupName>
</owners>

userName

The name of the client owner operated on by the ownersOperationType parameter. To add multiple client owners, add the following elements in the XML file for each client owner:

<owners>
   <userName></userName>
</owners>

A mix of users and user groups can be added as client owners, for example:

<owners>
   <userName>jdoe</userName>
</owners>
<owners>
   <userGroupName>support</userGroupName>
</owners>

Loading...