CreateUserReply Element
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.
Represents a reply from the conference center when the user account is created.
Syntax
<CreateUserReply/>
The following sections describe attributes, parent elements, and child elements.
Attributes
None.
Element Information
Parent Element
Element |
Occurrence |
---|---|
1 |
Child Element
Element |
Occurrence |
---|---|
0 or more |
Remarks
This element is returned if the user account is created; if it is not, a Fault element is returned.
Beginning with Live Meeting 2005, after a user is created on a conference center, the CreateUserReply element can contain the password value of the created user if the password is not specified or set to blank in the CreateUserRequest element.
Example
The following example shows a CreateUserRequest request without the password attribute.
<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
<CreateUserRequest userID="jeff">
<OptionList>
<StringOption name="email" value="jeff@contoso.com "/>
<StringOption name="lastName" value="Hay"/>
<BooleanOption name="isOrganizer" value="True"/>
</OptionList>
</CreateUserRequest>
</PlaceWareConfCenter>
The conference center returns the CreateUserReply.
<PlaceWareConfCenter>
<CreateUserReply>
<OptionList>
<StringOption password="Pa$$w0rd"/>
</OptionList>
</CreateUserReply>
</PlaceWareConfCenter>