GET
/
v5
/
app
/
reviews
/
{id}
curl --request GET \
  --url https://api.whop.com/api/v5/app/reviews/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "company_id": "<string>",
  "user_id": "<string>",
  "product_id": "<string>",
  "status": "pending",
  "stars": 123,
  "description": "<string>",
  "joined_at": 123,
  "created_at": 123
}

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The ID of the Review, which will look like rev_*************.

Response

200 - application/json
id
string
required

The ID of the review, which will look like rev_*************

company_id
string
required

The ID of the company, which will look like biz_*************

user_id
string
required

The ID of the user, which will look like user_*************

product_id
string
required

The ID of the product, which will look like prod_*************

status
enum<string>
required

The status of the review

Available options:
pending,
published,
removed
stars
number
required

The rating of the review. It will be an integer between one and five.

description
string

The text response the user left for the review.

joined_at
number

The date the customer first joined the creator's whop as a unix timestamp.

created_at
number
required

The date the review was created as a unix timestamp.