POST api/Championship/EditChampionship
Request Information
URI Parameters
None.
Body Parameters
EditChampionshipCommandDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
ChampionshipName | string |
None. |
|
UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "ef607679-c4b5-4b2a-8715-66967bfde4fc", "ChampionshipName": "sample string 2", "UserId": "2456de5b-91b8-45e8-b4f0-19f4ec2250b9" }
application/xml, text/xml
Sample:
<EditChampionshipCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ChampionshipModule.Model"> <ChampionshipName>sample string 2</ChampionshipName> <Id>ef607679-c4b5-4b2a-8715-66967bfde4fc</Id> <UserId>2456de5b-91b8-45e8-b4f0-19f4ec2250b9</UserId> </EditChampionshipCommandDto>
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>