POST api/ContestResult/GetContestReward
Request Information
URI Parameters
None.
Body Parameters
ContestInfoName | Description | Type | Additional information |
---|---|---|---|
ContestId | globally unique identifier |
None. |
|
ResultType | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ContestId": "c2dea6a1-7144-46c6-810c-db87b677c624", "ResultType": "sample string 2" }
application/xml, text/xml
Sample:
<ContestInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestResultModule.Model"> <ContestId>c2dea6a1-7144-46c6-810c-db87b677c624</ContestId> <ResultType>sample string 2</ResultType> </ContestInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of ContestRuleDtoName | Description | Type | Additional information |
---|---|---|---|
ContestId | globally unique identifier |
None. |
|
DriverId | globally unique identifier |
None. |
|
ResultType | string |
None. |
|
Rank | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ContestId": "3a9540ad-1414-4909-ad53-49a3e9d49469", "DriverId": "1d32ceed-91e0-4634-9b4c-98f25b9820a6", "ResultType": "sample string 2", "Rank": 3 }, { "ContestId": "3a9540ad-1414-4909-ad53-49a3e9d49469", "DriverId": "1d32ceed-91e0-4634-9b4c-98f25b9820a6", "ResultType": "sample string 2", "Rank": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfContestRuleDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestResultModule.Model"> <ContestRuleDto> <ContestId>3a9540ad-1414-4909-ad53-49a3e9d49469</ContestId> <DriverId>1d32ceed-91e0-4634-9b4c-98f25b9820a6</DriverId> <Rank>3</Rank> <ResultType>sample string 2</ResultType> </ContestRuleDto> <ContestRuleDto> <ContestId>3a9540ad-1414-4909-ad53-49a3e9d49469</ContestId> <DriverId>1d32ceed-91e0-4634-9b4c-98f25b9820a6</DriverId> <Rank>3</Rank> <ResultType>sample string 2</ResultType> </ContestRuleDto> </ArrayOfContestRuleDto>