Remove Member from Group
The Remove Member from Group
operation removes a user from a group. The data is defined in the input XML expected by the adapter.
Input XML
XML
<?xml version="1.0" encoding="UTF-8"?>
<Ids>
<UserId></UserId>
<GroupId></GroupId>
</Ids>
Ids
Element | Description | Possible values |
---|---|---|
Ids | The element contains the following elements:
| |
UserId | UUID of the user | UUID |
GroupId | 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="Ids">
<xs:complexType>
<xs:sequence>
<xs:element ref="UserId"/>
<xs:element ref="GroupId"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="UserId" type="xs:string"/>
<xs:element name="GroupId" type="xs:string"/>
</xs:schema>
Example
Input
XML
<?xml version="1.0" encoding="UTF-8"?>
<Ids>
<UserId>f37db159-8c3c-4b0a-ae7f-5362dcf4ed1b</UserId>
<GroupId>8445918e-f3ba-4c93-b3c4-7afd7b65fa57</GroupId>
</Ids>