POST api/remarks/insert

Request Information

URI Parameters

None.

Body Parameters

RemarksClass
NameDescriptionTypeAdditional information
ID

integer

None.

REMARKS

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "REMARKS": "sample string 2"
}

application/xml, text/xml

Sample:
<RemarksClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VEZTA.Models">
  <ID>1</ID>
  <REMARKS>sample string 2</REMARKS>
</RemarksClass>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemarksResponse
NameDescriptionTypeAdditional 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>