POST api/ContestResult/UpsertContestResult
Request Information
URI Parameters
None.
Body Parameters
Collection of UpsertContestResultCommandDtoName | Description | Type | Additional information |
---|---|---|---|
ContestId | globally unique identifier |
None. |
|
ResultType | string |
None. |
|
DriverId | globally unique identifier |
None. |
|
Rank | integer |
None. |
|
UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
[ { "ContestId": "b0262fc1-56f5-44ab-ae99-16b7886ff093", "ResultType": "sample string 2", "DriverId": "ce2060c0-bbf0-407a-86a8-76432e6676d9", "Rank": 3, "UserId": "666e8245-56ed-4c21-be48-44f7de92f20a" }, { "ContestId": "b0262fc1-56f5-44ab-ae99-16b7886ff093", "ResultType": "sample string 2", "DriverId": "ce2060c0-bbf0-407a-86a8-76432e6676d9", "Rank": 3, "UserId": "666e8245-56ed-4c21-be48-44f7de92f20a" } ]
application/xml, text/xml
Sample:
<ArrayOfUpsertContestResultCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestResultModule.Model"> <UpsertContestResultCommandDto> <ContestId>b0262fc1-56f5-44ab-ae99-16b7886ff093</ContestId> <DriverId>ce2060c0-bbf0-407a-86a8-76432e6676d9</DriverId> <Rank>3</Rank> <ResultType>sample string 2</ResultType> <UserId>666e8245-56ed-4c21-be48-44f7de92f20a</UserId> </UpsertContestResultCommandDto> <UpsertContestResultCommandDto> <ContestId>b0262fc1-56f5-44ab-ae99-16b7886ff093</ContestId> <DriverId>ce2060c0-bbf0-407a-86a8-76432e6676d9</DriverId> <Rank>3</Rank> <ResultType>sample string 2</ResultType> <UserId>666e8245-56ed-4c21-be48-44f7de92f20a</UserId> </UpsertContestResultCommandDto> </ArrayOfUpsertContestResultCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>