POST api/remarks/delete/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RemarksResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| flag | integer |
None. |
|
| Message | string |
None. |
|
| Data | Collection of RemarksClass |
None. |
Response Formats
application/json, text/json
Sample:
{
"flag": 1,
"Message": "sample string 2",
"Data": [
{
"ID": 1,
"REMARKS": "sample string 2"
},
{
"ID": 1,
"REMARKS": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RemarksResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VEZTA.Models">
<Data>
<RemarksClass>
<ID>1</ID>
<REMARKS>sample string 2</REMARKS>
</RemarksClass>
<RemarksClass>
<ID>1</ID>
<REMARKS>sample string 2</REMARKS>
</RemarksClass>
</Data>
<Message>sample string 2</Message>
<flag>1</flag>
</RemarksResponse>