POST api/ContestResult/UpsertRaceContestResult
Request Information
URI Parameters
None.
Body Parameters
Collection of UpsertContestQuestionResultCommandDtoName | Description | Type | Additional information |
---|---|---|---|
ContestId | globally unique identifier |
None. |
|
QuestionId | globally unique identifier |
None. |
|
DriverId | globally unique identifier |
None. |
|
TeamId | globally unique identifier |
None. |
|
ResponseText | string |
None. |
|
UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
[ { "ContestId": "71595c92-cfaa-4d30-8aeb-1eac99b99c9e", "QuestionId": "affbd118-79b8-4209-95a7-bb0a79282e05", "DriverId": "5dfe4ebe-3161-437f-ba3c-e1ff8892cf87", "TeamId": "fe0131ff-081e-44fe-8509-b624da32cff9", "ResponseText": "sample string 3", "UserId": "a767fbf1-8a60-4c15-b440-7de55dedf349" }, { "ContestId": "71595c92-cfaa-4d30-8aeb-1eac99b99c9e", "QuestionId": "affbd118-79b8-4209-95a7-bb0a79282e05", "DriverId": "5dfe4ebe-3161-437f-ba3c-e1ff8892cf87", "TeamId": "fe0131ff-081e-44fe-8509-b624da32cff9", "ResponseText": "sample string 3", "UserId": "a767fbf1-8a60-4c15-b440-7de55dedf349" } ]
application/xml, text/xml
Sample:
<ArrayOfUpsertContestQuestionResultCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestQuestionResultModule.Model"> <UpsertContestQuestionResultCommandDto> <ContestId>71595c92-cfaa-4d30-8aeb-1eac99b99c9e</ContestId> <DriverId>5dfe4ebe-3161-437f-ba3c-e1ff8892cf87</DriverId> <QuestionId>affbd118-79b8-4209-95a7-bb0a79282e05</QuestionId> <ResponseText>sample string 3</ResponseText> <TeamId>fe0131ff-081e-44fe-8509-b624da32cff9</TeamId> <UserId>a767fbf1-8a60-4c15-b440-7de55dedf349</UserId> </UpsertContestQuestionResultCommandDto> <UpsertContestQuestionResultCommandDto> <ContestId>71595c92-cfaa-4d30-8aeb-1eac99b99c9e</ContestId> <DriverId>5dfe4ebe-3161-437f-ba3c-e1ff8892cf87</DriverId> <QuestionId>affbd118-79b8-4209-95a7-bb0a79282e05</QuestionId> <ResponseText>sample string 3</ResponseText> <TeamId>fe0131ff-081e-44fe-8509-b624da32cff9</TeamId> <UserId>a767fbf1-8a60-4c15-b440-7de55dedf349</UserId> </UpsertContestQuestionResultCommandDto> </ArrayOfUpsertContestQuestionResultCommandDto>
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>