The PMessageReply class is used for posting a reply to a personal 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 |
|---|---|---|
| ConID | string | The ID of the conversation. |
| Body | string | The body of the message. |
<PMessageReply xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Body>Reply to test</Body> <ConID>196</ConID> </PMessageReply>
{ "ConID":196, "Body":"Reply to test" }