PUT api/Settings/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Setting| Name | Description | Type | Additional information |
|---|---|---|---|
| SettingId | integer |
None. |
|
| Name | string |
None. |
|
| Value | string |
None. |
|
| SettingType | SettingType |
None. |
|
| SettingScope | SettingScope |
None. |
|
| ValueAsType | Object |
None. |
Request Formats
application/json, text/json
Sample:
{
"SettingId": 1,
"Name": "sample string 2",
"Value": "sample string 3",
"SettingType": 0,
"SettingScope": 0,
"ValueAsType": false
}
application/xml, text/xml
Sample:
<Setting xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <SettingId>1</SettingId> <Name>sample string 2</Name> <Value>sample string 3</Value> <SettingType>BOOLEAN</SettingType> <SettingScope>System</SettingScope> </Setting>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean>true</boolean>