cURL
curl --request GET \ --url https://api.example.com/admin/reviews/{id} \ --header 'Authorization: Bearer <token>'
{ "review": { "id": "<string>", "rating": 123, "reference": "seller", "customer_note": "<string>", "customer_id": "<string>", "seller_note": "<string>" } }
Retrieves a review by id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Review.
Comma-separated fields to include in the response.
OK
A product/seller review with rating and comment
Show child attributes