POST api/products/search

Request Information

URI Parameters

None.

Body Parameters

ProductSearchRequest
NameDescriptionTypeAdditional information
kw

string

None.

count

integer

None.

page

integer

None.

seed

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "kw": "sample string 1",
  "count": 2,
  "page": 3,
  "seed": 1
}

text/xml

Sample:
<ProductSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pcone_api.Models.RequestModels">
  <count>2</count>
  <kw>sample string 1</kw>
  <page>3</page>
  <seed>1</seed>
</ProductSearchRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/xml

Sample:

Sample not available.