Skip to content

getReview.v1

POST
/shopgate.user.getReview.v1

This pipeline is used to retrieve the current users review for a product.

Media typeapplication/json
object
productId
required

Product id to get reviews for.

string
Examplegenerated
{
"productId": "example"
}

Successful response.

Media typeapplication/json
object
id

Id of review

string
<= 255 characters
author

Name of the reviewer

string
<= 255 characters
date
string format: dateTime
rate
integer format: int32
>= 1 <= 100
title
string
<= 255 characters
review
string
Example
{
"id": "1700123654",
"author": "Max Musterman",
"date": "2017-01-13T09:44:22Z",
"rate": 73,
"title": "This product is not that good",
"review": "I ordered a vacuum cleaner, but there are no dust bags with it, that is a pain"
}