Get Members of Group
The Get Members of Group
operation outputs the members of the group with the specified ID.
Input XML
XML
<?xml version="1.0" encoding="UTF-8"?>
<Id></Id>
Id
Element | Description | Possible values |
---|---|---|
Id | UUID of the group | UUID |
XSD
XML
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="Id" type="xs:string"/>
</xs:schema>
Example
Input
XML
<?xml version="1.0" encoding="UTF-8"?>
<Id>e8863a97-771d-4c34-90e8-4698d06928a5</Id>
Output
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Users>
<User>
<Id>a7bbfc23-a129-47c6-a802-e748d73876a6</Id>
<CreatedTimestamp>1634287894774</CreatedTimestamp>
<Username>jane</Username>
<Enabled>true</Enabled>
<Totp>false</Totp>
<EmailVerified>true</EmailVerified>
<FirstName>Jane</FirstName>
<LastName>Doe</LastName>
<Email>jane@example.com</Email>
<NotBefore>0</NotBefore>
</User>
<User>
<Id>1e6d7aed-8d82-4926-bf8d-fc490002f377</Id>
<CreatedTimestamp>1634287963141</CreatedTimestamp>
<Username>john</Username>
<Enabled>true</Enabled>
<Totp>false</Totp>
<EmailVerified>true</EmailVerified>
<FirstName>John</FirstName>
<LastName>Doe</LastName>
<Email>john@example.com</Email>
<NotBefore>0</NotBefore>
</User>
</Users>