PUT api/DrawTypes/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
DrawTypeName | Description | Type | Additional information |
---|---|---|---|
Id |
Gets or sets the id. |
integer |
None. |
DrawNumber |
Gets or sets the draw number (used for sorting purposes). |
integer |
Required |
Name |
Gets or sets the name of the draw. |
string |
Required |
GameType |
Gets or sets the type of the game. |
DrawGameType |
None. |
Abbreviation |
Gets or sets the abbreviation (short name) of the game type. |
string |
None. |
OdfId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "DrawNumber": 2, "Name": "sample string 3", "GameType": 0, "Abbreviation": "sample string 4", "OdfId": "sample string 5" }
application/xml, text/xml
Sample:
<DrawType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://worldcurling.org/statistics/data/drawtype"> <Abbreviation>sample string 4</Abbreviation> <DrawNumber>2</DrawNumber> <GameType>Roundrobin</GameType> <Id>1</Id> <Name>sample string 3</Name> <OdfId>sample string 5</OdfId> </DrawType>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.