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": "<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>"
    }
  }
}

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.