POST api/KitsKitchen
Request Information
URI Parameters
None.
Body Parameters
KitsKitchenName | 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": "3413b52d-c7af-4439-907c-0521eeea6901", "TimePlayed": "2025-04-04T05:15:40.9420249+00:00", "GameID": "eb7791d7-8f65-4448-8438-4ca708929b5f", "TotalTime": 4.1, "CorrectAnswers": 5, "WrongAnswers": 6, "RecipeName": "sample string 7", "Hand": 0, "Pictures": [ { "GameTime": 1.1, "PicID": "50d43a28-06fd-4c37-9bf6-e0f8e5a920c0" }, { "GameTime": 1.1, "PicID": "50d43a28-06fd-4c37-9bf6-e0f8e5a920c0" } ] }
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>eb7791d7-8f65-4448-8438-4ca708929b5f</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>50d43a28-06fd-4c37-9bf6-e0f8e5a920c0</d2p1:PicID> </d2p1:PictureClass> <d2p1:PictureClass> <d2p1:GameTime>1.1</d2p1:GameTime> <d2p1:PicID>50d43a28-06fd-4c37-9bf6-e0f8e5a920c0</d2p1:PicID> </d2p1:PictureClass> </Pictures> <RecipeName>sample string 7</RecipeName> <TimePlayed>2025-04-04T05:15:40.9420249+00:00</TimePlayed> <TotalTime>4.1</TotalTime> <UserzID>3413b52d-c7af-4439-907c-0521eeea6901</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.