GET api/WebshopReviews/GetWebshopReviews
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
WebshopReview| Name | Description | Type | Additional information |
|---|---|---|---|
| WebshopReviewId | integer |
None. |
|
| WebshopReviewText | string |
Required String length: inclusive between 0 and 255 |
|
| WebshopReviewRating | integer |
Required |
|
| WebshopReviewUserId | string |
None. |
|
| WebshopReviewUserName | string |
String length: inclusive between 0 and 100 |
|
| WebshopReviewDateTime | date |
None. |
|
| WebshopReviewIsAccepted | boolean |
None. |
|
| ObjectState | ObjectState |
None. |
Response Formats
application/json, text/json
Sample:
{
"webshopReviewId": 1,
"webshopReviewText": "sample string 2",
"webshopReviewRating": 3,
"webshopReviewUserId": "sample string 4",
"webshopReviewUserName": "sample string 5",
"webshopReviewDateTime": "2025-12-10T23:15:04.1544005+01:00",
"webshopReviewIsAccepted": true,
"objectState": 0
}
application/xml, text/xml
Sample:
<WebshopReview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Gruo.Core.Models"> <ObjectState xmlns="http://schemas.datacontract.org/2004/07/Gruo.Core.Repository">Unchanged</ObjectState> <WebshopReviewDateTime>2025-12-10T23:15:04.1544005+01:00</WebshopReviewDateTime> <WebshopReviewId>1</WebshopReviewId> <WebshopReviewIsAccepted>true</WebshopReviewIsAccepted> <WebshopReviewRating>3</WebshopReviewRating> <WebshopReviewText>sample string 2</WebshopReviewText> <WebshopReviewUserId>sample string 4</WebshopReviewUserId> <WebshopReviewUserName>sample string 5</WebshopReviewUserName> </WebshopReview>