POST api/orders/getfilteredorders

Request Information

URI Parameters

None.

Body Parameters

OrderFilterRequest
NameDescriptionTypeAdditional information
CompID

integer

None.

FRID

integer

None.

FromDate

string

None.

ToDate

string

None.

ShopID

integer

None.

CategoryID

integer

None.

BrandID

integer

None.

ProductID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CompID": 1,
  "FRID": 2,
  "FromDate": "sample string 3",
  "ToDate": "sample string 4",
  "ShopID": 5,
  "CategoryID": 6,
  "BrandID": 7,
  "ProductID": 8
}

text/html

Sample:
{"CompID":1,"FRID":2,"FromDate":"sample string 3","ToDate":"sample string 4","ShopID":5,"CategoryID":6,"BrandID":7,"ProductID":8}

application/xml, text/xml

Sample:
<OrderController.OrderFilterRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KeyCodeWebsApis.Controllers">
  <BrandID>7</BrandID>
  <CategoryID>6</CategoryID>
  <CompID>1</CompID>
  <FRID>2</FRID>
  <FromDate>sample string 3</FromDate>
  <ProductID>8</ProductID>
  <ShopID>5</ShopID>
  <ToDate>sample string 4</ToDate>
</OrderController.OrderFilterRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.