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

Authorizations

Authorization
string
header
required

App API key for /v5/app and /v5/company endpoints

Path Parameters

id
string
required

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

Response

200
application/json
review found

The response is of type object.