POST Web/masterdata/saveapplicationsettings

Request Information

URI Parameters

None.

Body Parameters

ApplicationSettingsDto
NameDescriptionTypeAdditional information
Id

integer

None.

SettingKey

string

None.

SettingValue

string

None.

SettingCategory

string

None.

IsActive

boolean

None.

CreatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "SettingKey": "sample string 2",
  "SettingValue": "sample string 3",
  "SettingCategory": "sample string 4",
  "IsActive": true,
  "CreatedDate": "2026-09-22T18:41:12.3746161+05:30"
}

text/html

Sample:
{"Id":1,"SettingKey":"sample string 2","SettingValue":"sample string 3","SettingCategory":"sample string 4","IsActive":true,"CreatedDate":"2026-09-22T18:41:12.3746161+05:30"}

application/xml, text/xml

Sample:
<ApplicationSettingsDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tracking.Entity">
  <CreatedDate>2026-09-22T18:41:12.3746161+05:30</CreatedDate>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <SettingCategory>sample string 4</SettingCategory>
  <SettingKey>sample string 2</SettingKey>
  <SettingValue>sample string 3</SettingValue>
</ApplicationSettingsDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ApplicationSettingsDto'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.