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": "ffcf4078-ea18-4a19-a04b-1c9fc423f109", "ResultType": "sample string 2", "DriverId": "f61a6b77-ce79-4b9d-98bb-1ccc671386c3", "Rank": 3, "UserId": "3cb8802e-c2ab-43e1-babc-99f00e9fc8f8" }, { "ContestId": "ffcf4078-ea18-4a19-a04b-1c9fc423f109", "ResultType": "sample string 2", "DriverId": "f61a6b77-ce79-4b9d-98bb-1ccc671386c3", "Rank": 3, "UserId": "3cb8802e-c2ab-43e1-babc-99f00e9fc8f8" } ]
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>ffcf4078-ea18-4a19-a04b-1c9fc423f109</ContestId> <DriverId>f61a6b77-ce79-4b9d-98bb-1ccc671386c3</DriverId> <Rank>3</Rank> <ResultType>sample string 2</ResultType> <UserId>3cb8802e-c2ab-43e1-babc-99f00e9fc8f8</UserId> </UpsertContestResultCommandDto> <UpsertContestResultCommandDto> <ContestId>ffcf4078-ea18-4a19-a04b-1c9fc423f109</ContestId> <DriverId>f61a6b77-ce79-4b9d-98bb-1ccc671386c3</DriverId> <Rank>3</Rank> <ResultType>sample string 2</ResultType> <UserId>3cb8802e-c2ab-43e1-babc-99f00e9fc8f8</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>