Skip to main content
GET
/
api
/
v1
/
app
/
reviews
List reviews
curl --request GET \
  --url https://{subdomain}.easyflows.io/api/v1/app/reviews
{
  "data": [
    {
      "id": "<string>",
      "rating": 3,
      "body": "<string>",
      "customer": true,
      "approved": true,
      "member": {
        "id": "<string>",
        "name": "<string>"
      },
      "created_at": "<string>",
      "updated_at": "<string>",
      "title": "<string>",
      "product": {
        "id": "<string>",
        "ref": "<string>",
        "platform": "<string>",
        "name": "<string>",
        "image": "<string>",
        "description": "<string>"
      }
    }
  ],
  "meta": {
    "total": 123,
    "page": 123,
    "limit": 123
  }
}

Query Parameters

page
number
default:1

The page number for pagination.

limit
number
default:20

The number of items per page.

product_ref
string

The reference of the product for which to list reviews.

rating
number

Filter reviews by rating.

Response

Success

data
object[]
required

The array of data returned by the API endpoint.

meta
object
required

Metadata about the paginated response.