POST api/Settings/UpdateSettings
Request Information
URI Parameters
None.
Body Parameters
Collection of SettingDto| Name | Description | Type | Additional information |
|---|---|---|---|
| SettingsId | integer |
None. |
|
| Name | string |
None. |
|
| Type | byte |
None. |
|
| Value | string |
None. |
|
| Description | string |
None. |
|
| CreatedDate | date |
None. |
|
| SettingType | SettingsType |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"SettingsId": 1,
"Name": "sample string 2",
"Type": 64,
"Value": "sample string 4",
"Description": "sample string 5",
"CreatedDate": "2026-04-22T15:56:26.6602556+05:30",
"SettingType": 64
},
{
"SettingsId": 1,
"Name": "sample string 2",
"Type": 64,
"Value": "sample string 4",
"Description": "sample string 5",
"CreatedDate": "2026-04-22T15:56:26.6602556+05:30",
"SettingType": 64
}
]
application/xml, text/xml
Sample:
<ArrayOfSettingDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Parihaar.Models">
<SettingDto>
<CreatedDate>2026-04-22T15:56:26.6602556+05:30</CreatedDate>
<Description>sample string 5</Description>
<Name>sample string 2</Name>
<SettingsId>1</SettingsId>
<Type>64</Type>
<Value>sample string 4</Value>
</SettingDto>
<SettingDto>
<CreatedDate>2026-04-22T15:56:26.6602556+05:30</CreatedDate>
<Description>sample string 5</Description>
<Name>sample string 2</Name>
<SettingsId>1</SettingsId>
<Type>64</Type>
<Value>sample string 4</Value>
</SettingDto>
</ArrayOfSettingDto>
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. |