POST api/KitsKitchen
Request Information
URI Parameters
None.
Body Parameters
KitsKitchen| Name | Description | Type | Additional information |
|---|---|---|---|
| UserzID | globally unique identifier |
None. |
|
| TimePlayed | date |
None. |
|
| GameID | globally unique identifier |
None. |
|
| TotalTime | decimal number |
None. |
|
| CorrectAnswers | integer |
None. |
|
| WrongAnswers | integer |
None. |
|
| RecipeName | string |
None. |
|
| Hand | KitsKitchenHandType |
None. |
|
| Pictures | Collection of PictureClass |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserzID": "025d3652-dc43-4846-befd-da57c1281c0a",
"TimePlayed": "2025-11-05T10:46:17.5713281+00:00",
"GameID": "bdcc72ba-c413-4e63-90c1-dadd8cbf9143",
"TotalTime": 4.1,
"CorrectAnswers": 5,
"WrongAnswers": 6,
"RecipeName": "sample string 7",
"Hand": 0,
"Pictures": [
{
"GameTime": 1.1,
"PicID": "2150aff7-ab47-4a12-867b-3842b7958970"
},
{
"GameTime": 1.1,
"PicID": "2150aff7-ab47-4a12-867b-3842b7958970"
}
]
}
application/xml, text/xml
Sample:
<KitsKitchenController.KitsKitchen xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
<CorrectAnswers>5</CorrectAnswers>
<GameID>bdcc72ba-c413-4e63-90c1-dadd8cbf9143</GameID>
<Hand>RIGHT</Hand>
<Pictures xmlns:d2p1="http://schemas.datacontract.org/2004/07/GameAPIV3.Models">
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>2150aff7-ab47-4a12-867b-3842b7958970</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>2150aff7-ab47-4a12-867b-3842b7958970</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<RecipeName>sample string 7</RecipeName>
<TimePlayed>2025-11-05T10:46:17.5713281+00:00</TimePlayed>
<TotalTime>4.1</TotalTime>
<UserzID>025d3652-dc43-4846-befd-da57c1281c0a</UserzID>
<WrongAnswers>6</WrongAnswers>
</KitsKitchenController.KitsKitchen>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.