POST api/Feelings/PostSettings
Request Information
URI Parameters
None.
Body Parameters
FeelingsSettings| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | globally unique identifier |
Required |
|
| Humming | boolean |
Required |
|
| SFX | boolean |
Required |
|
| BackgroundMusic | boolean |
Required |
|
| isLeftHand | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"UserID": "bb291acc-5ec0-482b-9d0c-072be8e7e4c5",
"Humming": true,
"SFX": true,
"BackgroundMusic": true,
"isLeftHand": true
}
application/xml, text/xml
Sample:
<FeelingsController.FeelingsSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameAPIV3.Controllers"> <BackgroundMusic>true</BackgroundMusic> <Humming>true</Humming> <SFX>true</SFX> <UserID>bb291acc-5ec0-482b-9d0c-072be8e7e4c5</UserID> <isLeftHand>true</isLeftHand> </FeelingsController.FeelingsSettings>
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.