POST api/Setting
Handles the HTTP POST request to save a settings value.
Request Information
URI Parameters
None.
Body Parameters
The settings object containing the name and value to be saved.
Setting| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Name | string |
None. |
|
| Value | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"Value": "sample string 3"
}
Response Information
Resource Description
An indicating the result of the operation.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.