POST Users/SaveSetting

Allows saving of a user setting

Request Information

URI Parameters

None.

Body Parameters

UserSettingDTO
NameDescriptionTypeAdditional information
UserID

ID of the user

globally unique identifier

None.

Key

Key

string

None.

Setting

User Setting

string

None.

Request Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "UserID": "186d7965-4cfc-4752-a987-d65763480636",
      "Key": "sample string 2",
      "Setting": "sample string 3"
    }
  ]
}

text/javascript

Sample:
{"results":[{"UserID":"186d7965-4cfc-4752-a987-d65763480636","Key":"sample string 2","Setting":"sample string 3"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<UserSettingDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <Key>sample string 2</Key>
  <Setting>sample string 3</Setting>
  <UserID>186d7965-4cfc-4752-a987-d65763480636</UserID>
</UserSettingDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.