GET api.ashx/v2/forums/threads/replies/{replyid}/ancestors.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
Depth | int | Query String | Levels of ancestors to return from the root reply down. Zero based with a max of 9. If 0 is specified, only the root reply will be returned in an ApiList<ForumReply>. If the reply is the root reply, ApiList<ForumReply> will have no records. | Optional | ||
PostTarget | string | Query String | Render target. Options: Unknown, Web, Syndication, Offline, Other, Print, Nntp, Email, WebQuote, WebServices. | Optional | ||
ReplyId | int | Query String | Thread Reply Id | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/forums/threads/replies/{replyid}/ancestors.json', data: { 'replyid': '6' } }).then(function(response) { // use response });