POST api/AgentSettings

Request Information

URI Parameters

None.

Body Parameters

Collection of AgentSetting
NameDescriptionTypeAdditional information
AgentId

integer

None.

Key

string

None.

Value

string

None.

IsPublic

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "AgentId": 1,
    "Key": "sample string 2",
    "Value": "sample string 3",
    "IsPublic": true
  },
  {
    "AgentId": 1,
    "Key": "sample string 2",
    "Value": "sample string 3",
    "IsPublic": true
  }
]

text/html

Sample:
[{"AgentId":1,"Key":"sample string 2","Value":"sample string 3","IsPublic":true},{"AgentId":1,"Key":"sample string 2","Value":"sample string 3","IsPublic":true}]

application/xml, text/xml

Sample:
<ArrayOfAgentSetting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NPlay.Common.Models">
  <AgentSetting>
    <AgentId>1</AgentId>
    <IsPublic>true</IsPublic>
    <Key>sample string 2</Key>
    <Value>sample string 3</Value>
  </AgentSetting>
  <AgentSetting>
    <AgentId>1</AgentId>
    <IsPublic>true</IsPublic>
    <Key>sample string 2</Key>
    <Value>sample string 3</Value>
  </AgentSetting>
</ArrayOfAgentSetting>

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 'List`1'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.