# List product reviews Lists reviews for a product. Only published Reviews will be listed. Endpoint: GET /ListProductReviews Version: 1.1 ## Query parameters: - `productId` (integer, required) The internal id of the product for which reviews are listed. - `cultureCode` (string) Specifies in which language to display culture specific information. If none is supplied, value is resolved from Application. ## Response 200 fields (application/json): - `Id` (integer,null) The internal id of the review. Null or left out when creating new reviews. - `ReferenceId` (integer) The internal product id of the review. Or if the review is for some other entity, then it is the entity Id. - `Name` (string) The name of the reviewer. MaxLength: 255. - `Email` (string) The email address of the reviewer. MaxLength: 255. - `Text` (string) The review text. MaxLength: max. - `Url` (string) A Url to some external source referenced by the reviewer. MaxLength: 255. - `ImagePath` (string) A Url to some external image uploaded by the reviewer. MaxLength: 255. - `Score` (number) The review score, if scores are kept. It is up to the application to define the score range. - `Date` (string) The date of the review. - `Likes` (integer) Number of likes. See UpdateProductReviewLikes for information about how to update this. - `Dislikes` (integer) Number of dislikes. See UpdateProductReviewLikes for information about how to update this. - `IsPublished` (boolean,null) Shows if review is published. Applications can have new reviews to not be published and later after internal review on the content have it published.