GET api/app311/GetTopReporters

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TopReporter
NameDescriptionTypeAdditional information
Username

string

None.

Points

integer

None.

GroupName

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "Username": "sample string 1",
    "Points": 2,
    "GroupName": "sample string 3"
  },
  {
    "Username": "sample string 1",
    "Points": 2,
    "GroupName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTopReporter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/app311.Service.DataAccess.DTO">
  <TopReporter>
    <GroupName>sample string 3</GroupName>
    <Points>2</Points>
    <Username>sample string 1</Username>
  </TopReporter>
  <TopReporter>
    <GroupName>sample string 3</GroupName>
    <Points>2</Points>
    <Username>sample string 1</Username>
  </TopReporter>
</ArrayOfTopReporter>