The StarAdd class contains the information required to star a message. Simply build up a string in the style of either XML or JSON and POST it to the correct end point.
| Property | Type | Description |
|---|---|---|
| Forum | string | The name of the forum. |
| Topic | string | The name of the topic. |
| MsgID | int | The message ID of the message. |
<PostMessage xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Forum>charlietest</Forum> <MsgID>10</MsgID> <Topic>newtest</Topic> </PostMessage>
{ "Forum":"charlietest", "Topic":"newtest", "MsgID":10 }