POST api/store/products/GetProductReviews
Request Information
URI Parameters
None.
Body Parameters
GetProductReviewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductID | integer |
Required |
|
| OrderStyle | string |
None. |
|
| OrderBy | string |
None. |
|
| SortOrder | string |
None. |
|
| CurrentPage | integer |
Required |
|
| PerPage | integer |
Required |
|
| Rating | integer |
None. |
|
| ImageVideo | string |
None. |
|
| Fit | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductID": 1,
"OrderStyle": "sample string 2",
"OrderBy": "sample string 3",
"SortOrder": "sample string 4",
"CurrentPage": 5,
"PerPage": 6,
"Rating": 7,
"ImageVideo": "sample string 8",
"Fit": "sample string 9"
}
application/xml, text/xml
Sample:
<GetProductReviewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAWModels.StoreModel"> <CurrentPage>5</CurrentPage> <Fit>sample string 9</Fit> <ImageVideo>sample string 8</ImageVideo> <OrderBy>sample string 3</OrderBy> <OrderStyle>sample string 2</OrderStyle> <PerPage>6</PerPage> <ProductID>1</ProductID> <Rating>7</Rating> <SortOrder>sample string 4</SortOrder> </GetProductReviewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.