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": "b45ada37-f19f-44c8-8ec8-9c2da7829bef",
"TimePlayed": "2025-12-21T15:10:46.1841189+00:00",
"GameID": "fd0f2f2c-5b71-4765-8f54-28959c1c7b2b",
"TotalTime": 4.1,
"CorrectAnswers": 5,
"WrongAnswers": 6,
"RecipeName": "sample string 7",
"Hand": 0,
"Pictures": [
{
"GameTime": 1.1,
"PicID": "e7b1f599-913e-4bf7-b06c-575739debf85"
},
{
"GameTime": 1.1,
"PicID": "e7b1f599-913e-4bf7-b06c-575739debf85"
}
]
}
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>fd0f2f2c-5b71-4765-8f54-28959c1c7b2b</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>e7b1f599-913e-4bf7-b06c-575739debf85</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>e7b1f599-913e-4bf7-b06c-575739debf85</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<RecipeName>sample string 7</RecipeName>
<TimePlayed>2025-12-21T15:10:46.1841189+00:00</TimePlayed>
<TotalTime>4.1</TotalTime>
<UserzID>b45ada37-f19f-44c8-8ec8-9c2da7829bef</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.