DELETE api/admin/agentsetting?agentId={agentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
agentId

integer

Required

Body Parameters

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
}

text/html

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

application/xml, text/xml

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

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 'AgentSetting'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.