Newer Version Available

This content describes an older version of this product. View Latest

User Message

Root XML tag
<message>
Properties
Name Type Description Available Version
body String Text of the message body 23.0
inReplyTo String ID of an existing message that identifies which conversation this message is part of.You must specify either recipients or inReplyTo. You must specify one or the other, not both. 23.0
recipients User Message Recipient List Input List of users who are the intended message recipients, up to 9. Comma-separated list of user IDs.You must specify either recipients or inReplyTo. You must specify one or the other, not both. 23.0
Example XML format:
1swfobject.registerObject("clippy.codeblock-0", "9");<message>
2   <body>Text of the message</body>
3   <recipients>
4      <recipient>userID</recipient>
5      <recipient>userID</recipient>
6   </recipients>
7   <inReplyTo>messageID</inReplyTo>
8</message>
9
Example JSON format:
1swfobject.registerObject("clippy.codeblock-1", "9");{
2   "body": "Text of the message",
3   "recipients": ["userID","userID"],
4   "inReplyTo": "messageID"
5}
6