GET
api/v1/ProductReview?Id={Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
Response Information
Description:
Return type: Collection of ProductReview
Response Formats
application/json, text/json
[
{
"FeedbackReviewId": 1,
"OrderNumber": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"ProductName": "sample string 5",
"Comment": "sample string 6",
"Rating": 1,
"IsApprovedByAdmin": true,
"AttachmentPath": "sample string 7",
"AttachmentType": "sample string 8"
},
{
"FeedbackReviewId": 1,
"OrderNumber": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"ProductName": "sample string 5",
"Comment": "sample string 6",
"Rating": 1,
"IsApprovedByAdmin": true,
"AttachmentPath": "sample string 7",
"AttachmentType": "sample string 8"
}
]
text/html
[{"FeedbackReviewId":1,"OrderNumber":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","ProductName":"sample string 5","Comment":"sample string 6","Rating":1,"IsApprovedByAdmin":true,"AttachmentPath":"sample string 7","AttachmentType":"sample string 8"},{"FeedbackReviewId":1,"OrderNumber":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","ProductName":"sample string 5","Comment":"sample string 6","Rating":1,"IsApprovedByAdmin":true,"AttachmentPath":"sample string 7","AttachmentType":"sample string 8"}]
application/xml, text/xml
<ArrayOfProductReview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Review">
<ProductReview>
<AttachmentPath>sample string 7</AttachmentPath>
<AttachmentType>sample string 8</AttachmentType>
<Comment>sample string 6</Comment>
<FeedbackReviewId>1</FeedbackReviewId>
<FirstName>sample string 3</FirstName>
<IsApprovedByAdmin>true</IsApprovedByAdmin>
<LastName>sample string 4</LastName>
<OrderNumber>sample string 2</OrderNumber>
<ProductName>sample string 5</ProductName>
<Rating>1</Rating>
</ProductReview>
<ProductReview>
<AttachmentPath>sample string 7</AttachmentPath>
<AttachmentType>sample string 8</AttachmentType>
<Comment>sample string 6</Comment>
<FeedbackReviewId>1</FeedbackReviewId>
<FirstName>sample string 3</FirstName>
<IsApprovedByAdmin>true</IsApprovedByAdmin>
<LastName>sample string 4</LastName>
<OrderNumber>sample string 2</OrderNumber>
<ProductName>sample string 5</ProductName>
<Rating>1</Rating>
</ProductReview>
</ArrayOfProductReview>
