POST (Header:PUT) api.ashx/v2/forums/{id}/read.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| HasRead | bool | Request Body | New read state of the forum thread | Required | ||
| id | int | Path | Id of the Forum | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.put({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/forums/{id}/read.json',
data: {
'id': '6',
'HasRead': 'True'
}
}).then(function(response) {
// use response
});Example Responses
JSON
{
"HasRead": true,
"Errors": [
"string",
"string"
]
}XML
<?xml version="1.0" encoding="utf-16"?>
<Response>
<HasRead>true</HasRead>
<Errors>
<Message>string</Message>
<Message>string</Message>
</Errors>
</Response>