Insert a Chat
To insert a chat, your XML must include the following properties and metadata fields:
Type | Required | Name | Description |
---|---|---|---|
Property | Yes | Type
|
The type of item to insert. To insert a chat, specify Chat . |
Metadata field | Yes | Member
|
The e-mail address of a person to include in the chat. To insert a group chat, set this field multiple times. |
Metadata field | Yes | Topic
|
The chat topic. |
For example, the value of your insertXML
action parameter might look like this:
<insertXML> <insert> <property name="Type" value="Chat"/> <xmlmetadata> <Member>alice@example.com</Member> <Member>bob@example.com</Member> <Topic>Upgrading to latest version</Topic> </xmlmetadata> </insert> </insertXML>