Skip to main content
Skip table of contents

Add Member to Group

The Add Member to Group operation adds a user to 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

ElementDescriptionPossible values
Ids

The element contains the following elements:

  • UserId
  • GroupId
UserIdUUID of the userUUID
GroupIdUUID of the groupUUID

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>
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.