Get Group by Id
The Get Group by Id
operation outputs the data 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>78f84034-3129-4636-97c5-189b338deeb4</Id>
Output
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Group>
<Id>78f84034-3129-4636-97c5-189b338deeb4</Id>
<Name>Employee</Name>
<Path>/Employee</Path>
<Attributes>
<Attribute>
<Name>Employment Relationship</Name>
<Values>
<Value>Software Developer</Value>
</Values>
</Attribute>
</Attributes>
<ClientRoles/>
<SubGroups/>
<access>
<entry>
<key>view</key>
<value>true</value>
</entry>
<entry>
<key>manage</key>
<value>true</value>
</entry>
<entry>
<key>manageMembership</key>
<value>true</value>
</entry>
</access>
</Group>