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. |
|
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. |
|
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. |
Request Formats
application/json, text/json
Sample:
{ "Id": "34d3c150-a808-4826-bfc1-f36eda614413", "AccountId": "0ade3d39-b2f1-42ff-97f2-f55c36ae5773", "ContestName": "sample string 2", "ContestNameFr": "sample string 3", "ContestDescription": "sample string 4", "ContestDescriptionFr": "sample string 5", "ContestDate": "2025-04-04T16:57:55.3524357+00:00", "ContestTime": "00:00:00.1234567", "Team1": "a59ab431-3461-4840-a31c-4dfe6f6aae31", "Team2": "7faf117e-28b9-4973-bd3c-7cac2bccb8e3", "IsContestLocked": true, "StickerId": "ea8074ed-bd29-4424-900d-3a8a29d2d656", "Sequence": 7, "UserId": "b0198e25-fd9d-451d-bf32-62048e3f0b65", "SportsTypeId": "8d0ffd74-0c6b-403e-9342-a7552ea77eae", "StatusId": "6b6b78c3-5e85-4243-8f3e-0e6c99992111", "IsPublished": true }
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>0ade3d39-b2f1-42ff-97f2-f55c36ae5773</AccountId> <ContestDate>2025-04-04T16:57:55.3524357+00:00</ContestDate> <ContestDescription>sample string 4</ContestDescription> <ContestDescriptionFr>sample string 5</ContestDescriptionFr> <ContestName>sample string 2</ContestName> <ContestNameFr>sample string 3</ContestNameFr> <ContestTime>PT0.1234567S</ContestTime> <Id>34d3c150-a808-4826-bfc1-f36eda614413</Id> <IsContestLocked>true</IsContestLocked> <IsPublished>true</IsPublished> <Sequence>7</Sequence> <SportsTypeId>8d0ffd74-0c6b-403e-9342-a7552ea77eae</SportsTypeId> <StatusId>6b6b78c3-5e85-4243-8f3e-0e6c99992111</StatusId> <StickerId>ea8074ed-bd29-4424-900d-3a8a29d2d656</StickerId> <Team1>a59ab431-3461-4840-a31c-4dfe6f6aae31</Team1> <Team2>7faf117e-28b9-4973-bd3c-7cac2bccb8e3</Team2> <UserId>b0198e25-fd9d-451d-bf32-62048e3f0b65</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>