POST api/AccountSettings?BookId={BookId}&SettingsId={SettingsId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
BookId

integer

Required

SettingsId

integer

Required

Body Parameters

None.

Response Information

Resource Description

AccountSettingsByIdVM
NameDescriptionTypeAdditional information
SetKey

string

None.

SetValue

string

None.

SetDesc

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SetKey": "sample string 1",
  "SetValue": "sample string 2",
  "SetDesc": "sample string 3"
}

application/xml, text/xml

Sample:
<AccountSettingsByIdVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models">
  <SetDesc>sample string 3</SetDesc>
  <SetKey>sample string 1</SetKey>
  <SetValue>sample string 2</SetValue>
</AccountSettingsByIdVM>