Returns the messages in a personal message conversation. Requires OAuth authentification.
GET
http://api.cixonline.com/v1.0/cix.svc/personalmessage/{msgid}/message(.xml/.json)
| Required | Name | Type | Description |
|---|---|---|---|
| required | msgid | string | The id of the firt message in a conversation. |
http://api.cixonline.com/v1.0/cix.svc/personalmessage/{msgid}/message.xml
<PMessageSet xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Count>2</Count> <PMessages> <PMessage> <Body>Since yours is an old account...</Body> <Date>2008-02-25T15:03:36.05</Date> <Recipient>xxx</Recipient> <Sender>xxx</Sender> </PMessage> <PMessage> <Body>yes they do. Nice app!Body> <Date>2008-02-25T15:06:14.753</Date> <Recipient>xxx</Recipient> <Sender>xxx</Sender> </PMessage> </PMessages> <Subject i:nil="true" /> </PMessageSet>
{ "Count":2, "PMessages":[ {"Body":"Since yours is an old account...","Date":"\/Date(1203951816050+0000)\/", "Recipient":"xxx","Sender":"xxx"}, {"Body":"yes they do. Nice app!Date":"\/Date(1203951974753+0000)\/", "Recipient":"xxx","Sender":"xxx"} ], "Subject":null }
| Code | Description |
|---|---|
| 400 | Bad request. Check input parameters. |
| 401 | Authentication failed. Missing required parameter : {parameter name}. |
| 401 | Signature expired. Either the timestamp or the nonce have expired or are invalid. |