Skip to main content
GET
/
api
/
v1
/
app
/
reviews
/
{id}
Get a review
curl --request GET \
  --url https://{subdomain}.easyflows.io/api/v1/app/reviews/{id}
{
  "data": {
    "id": "27e460ed-1e9c-4097-9f7e-12db081aa5c2",
    "rating": 5,
    "body": "I really like this product.",
    "customer": true,
    "approved": true,
    "member": {
      "id": "f804cfec-39ec-45cc-845a-4fe51b80d2f0",
      "name": "John Doe"
    },
    "created_at": "2026-01-01T12:00:00Z",
    "updated_at": "2026-01-01T12:00:00Z",
    "title": "Great product!",
    "product": {
      "id": "0b0abfba-18a4-4b7e-9179-e0cec1f2994f",
      "ref": "tebex-5ea84f",
      "platform": "tebex",
      "name": "Example Product",
      "image": "https://example.com/image.jpg",
      "description": "This is an example product."
    }
  }
}

Path Parameters

id
string
required

The identifier of the review to retrieve.

Response

Success

data
object
required

The main data returned by the API endpoint.