POST api/GameSettings/WonderPaint
Request Information
URI Parameters
None.
Body Parameters
GameWonderPaintSettingsBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| HorizontalPositioning | decimal number |
Required |
|
| VerticalPositioning | decimal number |
Required |
|
| Scale | decimal number |
Required |
|
| TracingPathColor | integer |
Required |
|
| Gesture | integer |
Required |
|
| PlayerIdentifier | boolean |
Required |
|
| Mute | boolean |
Required |
|
| isLeftHand | boolean |
Required |
|
| UserID | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"HorizontalPositioning": 1.1,
"VerticalPositioning": 2.1,
"Scale": 3.1,
"TracingPathColor": 4,
"Gesture": 5,
"PlayerIdentifier": true,
"Mute": true,
"isLeftHand": true,
"UserID": "5273c292-2e15-45b2-b79e-df27622f9ed8"
}
application/xml, text/xml
Sample:
<GameSettingsController.GameWonderPaintSettingsBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers"> <Gesture>5</Gesture> <HorizontalPositioning>1.1</HorizontalPositioning> <Mute>true</Mute> <PlayerIdentifier>true</PlayerIdentifier> <Scale>3.1</Scale> <TracingPathColor>4</TracingPathColor> <UserID>5273c292-2e15-45b2-b79e-df27622f9ed8</UserID> <VerticalPositioning>2.1</VerticalPositioning> <isLeftHand>true</isLeftHand> </GameSettingsController.GameWonderPaintSettingsBindingModel>
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.