GET api.ashx/v2/forums/threads/{threadid}/vote.{json|xml}
Gets an existing vote for a thread for the accessing user
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
ThreadId | int | Query String | Id of the Thread | Required | ||
VoteType | string | Query String | Either Interest or Quality. | Optional | Interest |
Example Requests
Widget Javascript
Fullscreen
1
2
3
4
5
6
7
8
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/forums/threads/{threadid}/vote.json',
data: {
'threadid': '6'
}
}).then(function(response) {
// use response
});