Selecting an item in an Encyclopedia volume
The following example requests a list of users in the Encyclopedia volume Roland. The Encyclopedia volume name is in the TargetVolume element. For each user, this operation requests the ID, name, e‑mail address, and home folder. It asks for 100 users at a time in the search result.
<SOAP-ENV:Header>
<TargetVolume>ROLAND</TargetVolume>
<AuthId>W4RhQBq0jidFqdi+o+r57uy</AuthId>
<Locale>he_IL</Locale>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<SelectUsers>
<ResultDef>
<String>Id</String>
<String>Name</String>
<String>EmailAddress</String>
<String>Homefolder</String>
</ResultDef>
<Search>
<FetchHandle/>
<CountLimit>300</CountLimit>
<FetchSize>100</FetchSize>
<FetchDirection>true</FetchDirection>
</Search>
</SelectUsers>
</SOAP-ENV:Body>
This request returns the specified properties for each user in the Encyclopedia volume and a total count of users.
<SOAP-ENV:Body>
<SelectUsersResponse>
<Users>
<User>
<Name>Samuel Stein</Name>
<Id>188</Id>
<EmailAddress>stein@cowin.com</EmailAddress>
<HomeFolder>/Sales</HomeFolder>
</User>
<User>
<Name>Jack Morris</Name>
<Id>143</Id>
<EmailAddress>morris@keller.com</EmailAddress>
<HomeFolder>/Marketing</HomeFolder>
</User>
…
</Users>
<TotalCount>300</TotalCount>
</SelectUsersResponse>
</SOAP-ENV:Body>