POST api/Contest/AddContest
Request Information
URI Parameters
None.
Body Parameters
AddContestCommandDtoName | Description | Type | Additional information |
---|---|---|---|
AccountId | globally unique identifier |
None. |
|
ContestName | string |
None. |
|
ContestNameFr | string |
None. |
|
ContestDescription | string |
None. |
|
ContestDescriptionFr | string |
None. |
|
ContestDate | date |
None. |
|
ContestTime | time interval |
None. |
|
Team1 | globally unique identifier |
None. |
|
Team2 | globally unique identifier |
None. |
|
IsContestLocked | boolean |
None. |
|
Sequence | integer |
None. |
|
StickerId | globally unique identifier |
None. |
|
UserId | globally unique identifier |
None. |
|
SportsTypeId | globally unique identifier |
None. |
|
StatusId | globally unique identifier |
None. |
|
IsPublished | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "AccountId": "73d19809-7441-4d1c-a308-55e4dc637fb2", "ContestName": "sample string 1", "ContestNameFr": "sample string 2", "ContestDescription": "sample string 3", "ContestDescriptionFr": "sample string 4", "ContestDate": "2025-04-03T20:27:04.2835259+00:00", "ContestTime": "00:00:00.1234567", "Team1": "2757fed6-2953-4a63-bec9-9d850b18d9cc", "Team2": "b1f56ec2-81aa-4c14-a923-bf6f1325fc92", "IsContestLocked": true, "Sequence": 5, "StickerId": "de5e0f40-cd0c-49d3-8659-724e79dd8158", "UserId": "68b62ca5-6357-4ed2-aad4-718d2da15958", "SportsTypeId": "09991a09-92b5-44b3-938e-c1f2380e9fc8", "StatusId": "fa10447a-d813-4ce5-9864-fc018c83f1ee", "IsPublished": true }
application/xml, text/xml
Sample:
<AddContestCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestModule.Model"> <AccountId>73d19809-7441-4d1c-a308-55e4dc637fb2</AccountId> <ContestDate>2025-04-03T20:27:04.2835259+00:00</ContestDate> <ContestDescription>sample string 3</ContestDescription> <ContestDescriptionFr>sample string 4</ContestDescriptionFr> <ContestName>sample string 1</ContestName> <ContestNameFr>sample string 2</ContestNameFr> <ContestTime>PT0.1234567S</ContestTime> <IsContestLocked>true</IsContestLocked> <IsPublished>true</IsPublished> <Sequence>5</Sequence> <SportsTypeId>09991a09-92b5-44b3-938e-c1f2380e9fc8</SportsTypeId> <StatusId>fa10447a-d813-4ce5-9864-fc018c83f1ee</StatusId> <StickerId>de5e0f40-cd0c-49d3-8659-724e79dd8158</StickerId> <Team1>2757fed6-2953-4a63-bec9-9d850b18d9cc</Team1> <Team2>b1f56ec2-81aa-4c14-a923-bf6f1325fc92</Team2> <UserId>68b62ca5-6357-4ed2-aad4-718d2da15958</UserId> </AddContestCommandDto>
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>