POST api/investigation/list

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

InvestigationResponse
NameDescriptionTypeAdditional information
flag

integer

None.

Message

string

None.

Data

Collection of InvestigationClass

None.

Response Formats

application/json, text/json

Sample:
{
  "flag": 1,
  "Message": "sample string 2",
  "Data": [
    {
      "ID": 1,
      "INVESTIGATION": "sample string 2",
      "IS_INACTIVE": true
    },
    {
      "ID": 1,
      "INVESTIGATION": "sample string 2",
      "IS_INACTIVE": true
    }
  ]
}

application/xml, text/xml

Sample:
<InvestigationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VEZTA.Models">
  <Data>
    <InvestigationClass>
      <ID>1</ID>
      <INVESTIGATION>sample string 2</INVESTIGATION>
      <IS_INACTIVE>true</IS_INACTIVE>
    </InvestigationClass>
    <InvestigationClass>
      <ID>1</ID>
      <INVESTIGATION>sample string 2</INVESTIGATION>
      <IS_INACTIVE>true</IS_INACTIVE>
    </InvestigationClass>
  </Data>
  <Message>sample string 2</Message>
  <flag>1</flag>
</InvestigationResponse>