POST api/notes/client/read
Request Information
URI Parameters
None.
Body Parameters
ReadNoteRequest| Name | Description | Type | Additional 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:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>