POST api/FishMunchies
Request Information
URI Parameters
None.
Body Parameters
FishMunchiesModelName | 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": "aeb553d3-e939-42b4-8b26-fa6d0daf0d8f", "TimePlayed": "2025-04-04T05:15:32.2470101+00:00", "UserID": "sample string 3", "GameID": "397eb787-f608-42bc-a16c-d07f437de102", "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": "18de2358-2b5c-4644-b72f-d47ffa11db57" }, { "GameTime": 1.1, "PicID": "18de2358-2b5c-4644-b72f-d47ffa11db57" } ] }
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>397eb787-f608-42bc-a16c-d07f437de102</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>18de2358-2b5c-4644-b72f-d47ffa11db57</d2p1:PicID> </d2p1:PictureClass> <d2p1:PictureClass> <d2p1:GameTime>1.1</d2p1:GameTime> <d2p1:PicID>18de2358-2b5c-4644-b72f-d47ffa11db57</d2p1:PicID> </d2p1:PictureClass> </Pictures> <Score>11.1</Score> <TimePlayed>2025-04-04T05:15:32.2470101+00:00</TimePlayed> <TotalTime>5.1</TotalTime> <UserID>sample string 3</UserID> <UserzID>aeb553d3-e939-42b4-8b26-fa6d0daf0d8f</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.