Skip to main content
Skip table of contents

Add Member to Group

Die Operation Add Member to Group fügt einen Benutzer einer Gruppe hinzu. Die Daten werden in der vom Adapter erwarteten Input-XML definiert.

Input-XML

XML
<?xml version="1.0" encoding="UTF-8"?>
<Ids>
	<UserId></UserId>
	<GroupId></GroupId>
</Ids>

Ids

ElementBeschreibungMögliche Werte
Ids

Das Element enthält folgende Elemente:

  • UserId
  • GroupId
UserIdUUID des BenutzersUUID
GroupIdUUID der GruppeUUID

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>

Beispiel

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.