POST api/FishMunchies
Request Information
URI Parameters
None.
Body Parameters
FishMunchiesModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserzID | globally unique identifier |
None. |
|
| TimePlayed | date |
None. |
|
| UserID | string |
None. |
|
| GameID | globally unique identifier |
None. |
|
| TotalTime | decimal number |
None. |
|
| CorrectShapeSpawnCount | decimal number |
None. |
|
| CorrectShapeCaughtCount | decimal number |
None. |
|
| WrongShapeSpawnCount | decimal number |
None. |
|
| WrongShapeCaughtCount | decimal number |
None. |
|
| CorrectShape | string |
None. |
|
| Score | decimal number |
None. |
|
| LevelNumber | integer |
None. |
|
| MaxLevel | integer |
None. |
|
| Hand | HandType |
None. |
|
| IsSuccessful | boolean |
None. |
|
| Pictures | Collection of PictureClass |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserzID": "f8d3a7f3-9733-4631-8210-d7161c0964c9",
"TimePlayed": "2025-12-21T15:06:54.2202589+00:00",
"UserID": "sample string 3",
"GameID": "c7ea8d82-c23e-4f6b-a7ab-be85b4239fce",
"TotalTime": 5.1,
"CorrectShapeSpawnCount": 6.1,
"CorrectShapeCaughtCount": 7.1,
"WrongShapeSpawnCount": 8.1,
"WrongShapeCaughtCount": 9.1,
"CorrectShape": "sample string 10",
"Score": 11.1,
"LevelNumber": 12,
"MaxLevel": 13,
"Hand": 0,
"IsSuccessful": true,
"Pictures": [
{
"GameTime": 1.1,
"PicID": "e32c2ce1-9b4c-493b-82ce-51afedff667b"
},
{
"GameTime": 1.1,
"PicID": "e32c2ce1-9b4c-493b-82ce-51afedff667b"
}
]
}
application/xml, text/xml
Sample:
<FishMunchiesController.FishMunchies xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers">
<CorrectShape>sample string 10</CorrectShape>
<CorrectShapeCaughtCount>7.1</CorrectShapeCaughtCount>
<CorrectShapeSpawnCount>6.1</CorrectShapeSpawnCount>
<GameID>c7ea8d82-c23e-4f6b-a7ab-be85b4239fce</GameID>
<Hand>RIGHT</Hand>
<IsSuccessful>true</IsSuccessful>
<LevelNumber>12</LevelNumber>
<MaxLevel>13</MaxLevel>
<Pictures xmlns:d2p1="http://schemas.datacontract.org/2004/07/GameAPIV3.Models">
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>e32c2ce1-9b4c-493b-82ce-51afedff667b</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>e32c2ce1-9b4c-493b-82ce-51afedff667b</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<Score>11.1</Score>
<TimePlayed>2025-12-21T15:06:54.2202589+00:00</TimePlayed>
<TotalTime>5.1</TotalTime>
<UserID>sample string 3</UserID>
<UserzID>f8d3a7f3-9733-4631-8210-d7161c0964c9</UserzID>
<WrongShapeCaughtCount>9.1</WrongShapeCaughtCount>
<WrongShapeSpawnCount>8.1</WrongShapeSpawnCount>
</FishMunchiesController.FishMunchies>
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.