POST api/Values/searchorderviewdate

Request Information

URI Parameters

None.

Body Parameters

searchorder
NameDescriptionTypeAdditional information
UserType

string

None.

dealername

string

None.

orderType

string

None.

excuteid

integer

None.

fromdate

date

None.

todate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserType": "sample string 1",
  "dealername": "sample string 2",
  "orderType": "sample string 3",
  "excuteid": 4,
  "fromdate": "2026-05-13T16:16:31.7206453+05:30",
  "todate": "2026-05-13T16:16:31.7206453+05:30"
}

application/xml, text/xml

Sample:
<searchorder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Delphitvs_catalog_json">
  <UserType>sample string 1</UserType>
  <dealername>sample string 2</dealername>
  <excuteid>4</excuteid>
  <fromdate>2026-05-13T16:16:31.7206453+05:30</fromdate>
  <orderType>sample string 3</orderType>
  <todate>2026-05-13T16:16:31.7206453+05:30</todate>
</searchorder>

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

Response Information

Resource Description

Output
NameDescriptionTypeAdditional information
result

string

None.

msg

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "result": "sample string 1",
  "msg": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<Output xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Delphitvs_catalog_json">
  <data />
  <msg>sample string 2</msg>
  <result>sample string 1</result>
</Output>