POST api/notes/client/read

Request Information

URI Parameters

None.

Body Parameters

ReadNoteRequest
NameDescriptionTypeAdditional information
CustomerID

decimal number

None.

MessageID

decimal number

None.

CGName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerID": 1.0,
  "MessageID": 2.0,
  "CGName": "sample string 3"
}

application/xml, text/xml

Sample:
<ReadNoteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <CGName>sample string 3</CGName>
  <CustomerID>1</CustomerID>
  <MessageID>2</MessageID>
</ReadNoteRequest>

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

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>