LDAP Group

An LDAP group is a set of users or objects that are organized in an LDAP direcrory. The LDAP users can be imported into TA for improving user audit trails. These imported users inherit security from multiple LDAP groups.

Imported LDAP user information is stored into a user definition that includes email, telephone, etc. Imported LDAP users are allowed to be owners of scheduling constructs such as jobs if their security permits.

LDAP Group Example

Create an LDAP Group

To create the LDAP group via the API use this XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<entry xmlns="http://purl.org/atom/ns#"> 
<id>1</id> <!-- Replace it with the desired ID of the LDAP group, if necessary -->
<title>JMS</title> <!-- Replace it with an appropriate title of the LDAP group, if necessary -->
<category term="0" scheme="group" label=""/>
<tes:Users.create xmlns:tes="http://www.tidalsoftware.com/client/tesservlet">
<tes:Users>
<tes:securitypolicyname>Administrator</tes:securitypolicyname> <!-- Replace it with the name of the security policy -->
<tes:allagents>Y</tes:allagents> <!-- Specify if the user has access to all agents -->
<tes:wingroup>Y</tes:wingroup> <!-- Specify if the user is granted access to a spesific Windows group -->
<tes:domain>ad</tes:domain> <!-- Set the associated domain -->
<tes:securitypolicyid>4</tes:securitypolicyid> <!-- Set the ID of the security policy -->
<tes:name>domain admins2</tes:name> <!-- Set the name of the user being created -->
<tes:superuser>N</tes:superuser> <!-- Specify if the user is a superuser -->
<tes:allagentlists>Y</tes:allagentlists> <!-- Give access to all agent lists -->
</tes:Users>
</tes:Users.create>
</entry>