POST api/v1/User/UpdateUserSettingV2
Request Information
URI Parameters
None.
Body Parameters
CustomerSettingApiModel| Name | Description | Type | Additional information |
|---|---|---|---|
| hasPushNotifications | boolean |
None. |
|
| hasPlatformServices | boolean |
None. |
|
| enableNearbyPushNotification | boolean |
None. |
|
| deviceType | string |
None. |
|
| deviceModel | string |
None. |
|
| osVersion | string |
None. |
|
| screenName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"hasPushNotifications": true,
"hasPlatformServices": true,
"enableNearbyPushNotification": true,
"deviceType": "sample string 4",
"deviceModel": "sample string 5",
"osVersion": "sample string 6",
"screenName": "sample string 7"
}
application/xml, text/xml
Sample:
<CustomerSettingApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mofr.API.Controllers.v1"> <deviceModel>sample string 5</deviceModel> <deviceType>sample string 4</deviceType> <enableNearbyPushNotification>true</enableNearbyPushNotification> <hasPlatformServices>true</hasPlatformServices> <hasPushNotifications>true</hasPushNotifications> <osVersion>sample string 6</osVersion> <screenName>sample string 7</screenName> </CustomerSettingApiModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |