POST api/MessageBoard/UpdateLabelProcessing

Request Information

URI Parameters

None.

Body Parameters

UpdateProcessingTypeModel
NameDescriptionTypeAdditional information
Ids

Collection of integer

None.

ProcessingType

ProcessingType

None.

Principal

string

None.

Scheme

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Ids": [
    1,
    2
  ],
  "ProcessingType": 0,
  "Principal": "sample string 1",
  "Scheme": "sample string 2"
}

application/xml, text/xml

Sample:
<UpdateProcessingTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MS.Report.Model.MessageBoard">
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Ids>
  <Principal>sample string 1</Principal>
  <ProcessingType>Untreated</ProcessingType>
  <Scheme>sample string 2</Scheme>
</UpdateProcessingTypeModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseResultOfBoolean
NameDescriptionTypeAdditional information
Status

boolean

None.

ErrorCode

string

None.

ErrorMessage

string

None.

Data

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "ErrorCode": "sample string 2",
  "ErrorMessage": "sample string 3",
  "Data": true
}

application/xml, text/xml

Sample:
<ResponseResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Willv.Common">
  <Data>true</Data>
  <ErrorCode>sample string 2</ErrorCode>
  <ErrorMessage>sample string 3</ErrorMessage>
  <Status>true</Status>
</ResponseResultOfboolean>