GET api.ashx/v2/scores/groupauthorquality/{userid}.{json|xml}
Request Parameters
Name | Type | Location | Description | Required | Default | Options |
---|---|---|---|---|---|---|
PageIndex | int | Query String | Page index to retrieve | Optional | 0 | |
PageSize | int | Query String | Page size to retrieve | Optional | 10 | |
Threshold | int | Query String | Score threshold | Optional | 10 | |
userid | int | Path | Id of group author user | Required |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({ url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/scores/groupauthorquality/{userid}.json', data: { 'userid': '6' } }).then(function(response) { // use response });
Example Responses
JSON
{ "Groups": [], "Errors": [ "string", "string" ] }
XML
<?xml version="1.0" encoding="utf-16"?> <Response> <Groups /> <Errors> <Message>string</Message> <Message>string</Message> </Errors> </Response>