GET api/Congress?ReturnResults={ReturnResults}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ReturnResults | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DashboardCompResultsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| Surname | string |
None. |
|
| Result | integer |
None. |
|
| PerfectCount | integer |
None. |
|
| PartialCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FirstName": "sample string 1",
"Surname": "sample string 2",
"Result": 3,
"PerfectCount": 4,
"PartialCount": 5
},
{
"FirstName": "sample string 1",
"Surname": "sample string 2",
"Result": 3,
"PerfectCount": 4,
"PartialCount": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfDashboardCompResultsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YellowZebra.Congress.TransferLayer.Concrete">
<DashboardCompResultsDTO>
<FirstName>sample string 1</FirstName>
<PartialCount>5</PartialCount>
<PerfectCount>4</PerfectCount>
<Result>3</Result>
<Surname>sample string 2</Surname>
</DashboardCompResultsDTO>
<DashboardCompResultsDTO>
<FirstName>sample string 1</FirstName>
<PartialCount>5</PartialCount>
<PerfectCount>4</PerfectCount>
<Result>3</Result>
<Surname>sample string 2</Surname>
</DashboardCompResultsDTO>
</ArrayOfDashboardCompResultsDTO>