POST api/AgentSettings
Request Information
URI Parameters
None.
Body Parameters
Collection of AgentSettingName | Description | Type | Additional 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:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.