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