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": "64376123-edf7-4e97-9209-5868c01c19b8",
"TimePlayed": "2025-11-05T10:48:17.5221132+00:00",
"UserID": "sample string 3",
"GameID": "e8f0f60f-4bc2-4a8a-a5ec-d82355621746",
"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": "d3a742dc-3aed-4005-a9bd-035c16ca1972"
},
{
"GameTime": 1.1,
"PicID": "d3a742dc-3aed-4005-a9bd-035c16ca1972"
}
]
}
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>e8f0f60f-4bc2-4a8a-a5ec-d82355621746</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>d3a742dc-3aed-4005-a9bd-035c16ca1972</d2p1:PicID>
</d2p1:PictureClass>
<d2p1:PictureClass>
<d2p1:GameTime>1.1</d2p1:GameTime>
<d2p1:PicID>d3a742dc-3aed-4005-a9bd-035c16ca1972</d2p1:PicID>
</d2p1:PictureClass>
</Pictures>
<Score>11.1</Score>
<TimePlayed>2025-11-05T10:48:17.5221132+00:00</TimePlayed>
<TotalTime>5.1</TotalTime>
<UserID>sample string 3</UserID>
<UserzID>64376123-edf7-4e97-9209-5868c01c19b8</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.