POST pricelist/UpdatePriceListStatus

Request Information

URI Parameters

None.

Body Parameters

AssignObject
NameDescriptionTypeAdditional information
Type

string

None.

Items

Collection of AssignItem

None.

Request Formats

application/json, text/json

Sample:
{
  "Type": "sample string 1",
  "Items": [
    {
      "Id": 1,
      "Checked": true
    },
    {
      "Id": 1,
      "Checked": true
    }
  ]
}

text/html

Sample:
{"Type":"sample string 1","Items":[{"Id":1,"Checked":true},{"Id":1,"Checked":true}]}

application/xml, text/xml

Sample:
<AssignObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.Maintenance">
  <Items>
    <AssignItem>
      <Checked>true</Checked>
      <Id>1</Id>
    </AssignItem>
    <AssignItem>
      <Checked>true</Checked>
      <Id>1</Id>
    </AssignItem>
  </Items>
  <Type>sample string 1</Type>
</AssignObject>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.