POST api/Contest/DeleteContestImage

Request Information

URI Parameters

None.

Body Parameters

DeleteContestImageCommandDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ImageType

string

None.

UserId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "f1d4e2c4-0718-4bbe-bceb-ff7edde92450",
  "ImageType": "sample string 1",
  "UserId": "2a04a786-ea9b-4527-9b0c-4788c5007709"
}

application/xml, text/xml

Sample:
<DeleteContestImageCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ContestModule.Model">
  <Id>f1d4e2c4-0718-4bbe-bceb-ff7edde92450</Id>
  <ImageType>sample string 1</ImageType>
  <UserId>2a04a786-ea9b-4527-9b0c-4788c5007709</UserId>
</DeleteContestImageCommandDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DeleteContestImageCommandDto'.

Response Information

Resource Description

string

Response 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>