The following example shows the request and response that is defined in the XSD files for the QuerySysAdminUser tag. If the Name element occurs, the CMP queries only the corresponding user; otherwise, all users are queried.
This request follows the QuerySysAdminUser tag defined in the XSD files.
<XmlInterfaceRequest>
<QuerySysAdminUser>
<Name>admin</Name>
</QuerySysAdminUser>
</XmlInterfaceRequest>
250 characters (string); can only contain the characters A–Z, a–z, 0–9, period (.), hyphen (-), and underline (_)
If the query is successful, the list of users is returned in XML as a response with the following fields for each user.
The name of the user
The description of the user
The password fo the user, encrypted
0 = locked, 1 = unlocked
The associated role
The associated scope; there can be multiple scopes.
The response to this request:
<ConfigurationData version="7.5.0">
<SysAdminUser>
<Name>admin</Name>
<Description>The default administrator user with all privileges</Description>
<Password>835154D6D3FA2C3575AA700A54AB9F6492E7ABB7</Password>
<LockedStatus>0</LockedStatus>
<RoleRef>
<Name>Administrator</Name>
</RoleRef>
<ScopeRef>
<Name>Global</Name>
</ScopeRef>
</SysAdminUser>
</ConfigurationData>