GET api.ashx/v2/forums/threads/{threadid}/replies/{replyid}/threaded.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
Direction | string | Query String | Specifies the direction paging occurs, either up from the ReplyId passed in to the root reply, or down from the root reply for the ReplyId passed in. 'FromRootReply', 'FromReply' | Optional | FromReply | |
FlattenedDepth | int | Query String | Specify the depth at which all child replies will be wrapped under the last level of threaded replies. Zero-based index. Max of 9. | Optional | 2 | |
FlattenedSortBy | string | Query String | Sort of flattened replies. Sort options include CreatedDate or Votes | Optional | ||
FlattenedSortOrder | string | Query String | Sort order of flattened replies. 'Ascending' or 'Descending' | Optional | ||
PageSize | int | Query String | Number of replies to return. Max of 100. | Optional | 20 | |
PostTarget | string | Query String | Render target. Options: Unknown, Web, Syndication, Offline, Other, Print, Nntp, Email, WebQuote, WebServices. | Optional | ||
ReplyId | int | Query String | Reply Id | Required | ||
ThreadedSortBy | string | Query String | Sort threaded replies by. Sort options include CreatedDate or Votes | Optional | ||
ThreadedSortOrder | string | Query String | Sort order threaded replies. 'Ascending' or 'Descending' | Optional | ||
ThreadId | int | Query String | Thread Id | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/forums/threads/{threadid}/replies/{replyid}/threaded.json', data: { 'threadid': '6', 'replyid': '6' } }).then(function(response) { // use response });