POST api/Contest/SendContestEmail
Request Information
URI Parameters
None.
Body Parameters
EditContestCommandDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
AccountId | globally unique identifier |
None. |
|
ContestName | string |
None. |
|
ContestDescription | string |
None. |
|
ContestDate | date |
None. |
|
ContestTime | time interval |
None. |
|
Team1 | globally unique identifier |
None. |
|
Team2 | globally unique identifier |
None. |
|
IsContestLocked | boolean |
None. |
|
StickerId | globally unique identifier |
None. |
|
Sequence | integer |
None. |
|
UserId | globally unique identifier |
None. |
|
SportsTypeId | globally unique identifier |
None. |
|
StatusId | globally unique identifier |
None. |
|
IsPublished | boolean |
None. |
|
SeasonTypeId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "c583478d-0809-4f8a-97d9-943b2ba7dae2", "AccountId": "7ce006c8-2d0e-4070-91ee-1cb57a8a02f1", "ContestName": "sample string 2", "ContestDescription": "sample string 3", "ContestDate": "2025-07-23T00:24:35.4632981+00:00", "ContestTime": "00:00:00.1234567", "Team1": "52d2ec48-7622-460a-8ee5-55fb17f4daac", "Team2": "61a5ce23-0435-4ef9-964d-428261d641c9", "IsContestLocked": true, "StickerId": "d2780b6f-e865-4ddd-a175-2f3354d130ef", "Sequence": 5, "UserId": "ed91d1e2-3cf9-4ec4-a947-a660cec23b83", "SportsTypeId": "1b54437c-0d16-4172-8728-f58e0560b814", "StatusId": "8701ec0d-2550-4eac-9a0d-ddb414838ef6", "IsPublished": true, "SeasonTypeId": "36dfe4d4-2a92-4d0f-8163-fe4a01d98e30" }
application/xml, text/xml
Sample:
<EditContestCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestModule.Model"> <AccountId>7ce006c8-2d0e-4070-91ee-1cb57a8a02f1</AccountId> <ContestDate>2025-07-23T00:24:35.4632981+00:00</ContestDate> <ContestDescription>sample string 3</ContestDescription> <ContestName>sample string 2</ContestName> <ContestTime>PT0.1234567S</ContestTime> <Id>c583478d-0809-4f8a-97d9-943b2ba7dae2</Id> <IsContestLocked>true</IsContestLocked> <IsPublished>true</IsPublished> <SeasonTypeId>36dfe4d4-2a92-4d0f-8163-fe4a01d98e30</SeasonTypeId> <Sequence>5</Sequence> <SportsTypeId>1b54437c-0d16-4172-8728-f58e0560b814</SportsTypeId> <StatusId>8701ec0d-2550-4eac-9a0d-ddb414838ef6</StatusId> <StickerId>d2780b6f-e865-4ddd-a175-2f3354d130ef</StickerId> <Team1>52d2ec48-7622-460a-8ee5-55fb17f4daac</Team1> <Team2>61a5ce23-0435-4ef9-964d-428261d641c9</Team2> <UserId>ed91d1e2-3cf9-4ec4-a947-a660cec23b83</UserId> </EditContestCommandDto>
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>