POST api/GameSettings/FlashDash
Request Information
URI Parameters
None.
Body Parameters
GameFlashDashSettingsBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BackgroundMusic | boolean |
Required |
|
| SFX | boolean |
Required |
|
| MaxLevelUnlocked | integer |
Required |
|
| UserID | globally unique identifier |
Required |
|
| ScreenShake | boolean |
Required |
|
| DetectionThroughHips | boolean |
Required |
|
| CurrentPlayerSelected | integer |
Required |
|
| CameraFlash | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"BackgroundMusic": true,
"SFX": true,
"MaxLevelUnlocked": 3,
"UserID": "fb2767fc-8e96-4d5f-869b-462b0d443320",
"ScreenShake": true,
"DetectionThroughHips": true,
"CurrentPlayerSelected": 7,
"CameraFlash": true
}
application/xml, text/xml
Sample:
<GameSettingsController.GameFlashDashSettingsBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers"> <BackgroundMusic>true</BackgroundMusic> <CameraFlash>true</CameraFlash> <CurrentPlayerSelected>7</CurrentPlayerSelected> <DetectionThroughHips>true</DetectionThroughHips> <MaxLevelUnlocked>3</MaxLevelUnlocked> <SFX>true</SFX> <ScreenShake>true</ScreenShake> <UserID>fb2767fc-8e96-4d5f-869b-462b0d443320</UserID> </GameSettingsController.GameFlashDashSettingsBindingModel>
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.