logoSellhub
Reviews
background
Sellhub Docs
Sellhub Docs
Store Reviews
GET
/store/reviews

Authorization

Authorization<token>

In: header

Query Parameters

idstring

Generic ID filter (e.g., product, bundle, coupon, etc.)

customerIdstring

Customer ID

invoiceIdstring

Invoice ID

ratingnumber

Review rating (1–5)

createdAtFromstring

Earliest creation date (ISO 8601 datetime)

Format: "date-time"
createdAtTostring

Latest creation date (ISO 8601 datetime)

Format: "date-time"
curl -X GET "https://dash.sellhub.cx/api/sellhub/store/reviews?id=%3Cstring%3E&customerId=%3Cstring%3E&invoiceId=%3Cstring%3E&rating=0&createdAtFrom=2019-08-24T14%3A15%3A22Z&createdAtTo=2019-08-24T14%3A15%3A22Z" \
  -H "Authorization: <token>"

A list of product reviews

{
  "data": {
    "reviews": [
      {
        "id": "review_123",
        "invoiceId": "inv_456",
        "customerId": "cust_789",
        "createdAt": "2023-06-15T14:30:00Z",
        "rating": 5,
        "text": "Great product, highly recommended!",
        "productName": "Awesome Widget"
      }
    ]
  }
}