# List of eshop reviews Returns a list of the e-shop's reviews. This endpoint is available only when the 'Rating' module is active. Also, the e-shop must have store ratings enabled in the administration settings. The endpoint supports Paging. Endpoint: GET /api/eshop/reviews Version: 1.0.0 Security: shoptetAccessToken, shoptetPrivateApiToken ## Response 200 fields (application/json): - `data` (object, required) - `data.reviews` (array, required) - `data.reviews.date` (string,null, required) Review creation date. - `data.reviews.orderCode` (null,string, required) Order code related to review. Can be null. - `data.reviews.rating` (number, required) Number from 1 to 5 representing starts of review's rating. - `data.reviews.description` (null,string, required) - `data.reviews.fullName` (null,string, required) Fullname of review's author. Can be null. - `data.reviews.email` (null,string, required) Email of the review author. If it's a registered customer and the review email is empty, it's filled with the customer's main account email. Can be null. - `data.reviews.customerGuid` (null,string, required) Customer guid related to review. Can be null. - `data.reviews.visible` (boolean, required) - `data.reviews.reaction` (object, required) - `data.reviews.reaction.reactionCreated` (string,null, required) Date of creation of reaction. Can be null. - `data.reviews.reaction.reactionFullName` (null,string, required) - `data.reviews.reaction.reactionEmail` (null,string, required) - `data.reviews.reaction.reactionText` (null,string, required) - `data.paginator` (object, required) - `data.paginator.totalCount` (integer, required) total number of available records - `data.paginator.page` (integer, required) current page - `data.paginator.pageCount` (integer, required) total available of pages - `data.paginator.itemsOnPage` (integer, required) number of currently returned records - `data.paginator.itemsPerPage` (integer, required) required number of records per page - `errors` (array,null, required) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced ## Response 403 fields (application/json): - `data` (object,null) - `errors` (array,null) - `errors.errorCode` (string, required) Short text error identification - `errors.message` (string, required) Descriptive error message - `errors.instance` (string, required) Identification of the entity referenced