GET api/ProductReview/GetAllProductReviewsByProductId/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ProductReview| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Product_Id | integer |
None. |
|
| Product | string |
None. |
|
| Customer_Id | integer |
None. |
|
| Customer | string |
None. |
|
| Status | string |
None. |
|
| Description | string |
None. |
|
| CreatedDate | string |
None. |
|
| UpdatedDate | string |
None. |
|
| Rating | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Id": 1,
"Product_Id": 2,
"Product": "sample string 3",
"Customer_Id": 4,
"Customer": "sample string 5",
"Status": "sample string 6",
"Description": "sample string 7",
"CreatedDate": "sample string 8",
"UpdatedDate": "sample string 9",
"Rating": 10,
"CreatedBy": 11,
"UpdatedBy": 12
},
{
"$ref": "1"
}
]
application/octet-stream
Sample:
[{"$id":"1","Id":1,"Product_Id":2,"Product":"sample string 3","Customer_Id":4,"Customer":"sample string 5","Status":"sample string 6","Description":"sample string 7","CreatedDate":"sample string 8","UpdatedDate":"sample string 9","Rating":10,"CreatedBy":11,"UpdatedBy":12},{"$ref":"1"}]