List Reviews
GET /api/v1/reviews
Filter by product_id, approved (0=pending, 1=approved). Sort by id, time, rating.
# Get pending reviews
curl -H "Authorization: Bearer KEY:SECRET"
"https://example.com/api/v1/reviews?approved=0"
Get / Update / Delete
GET /api/v1/reviews/{id}
PUT /api/v1/reviews/{id}
DELETE /api/v1/reviews/{id}
Approve a Review
curl -X PUT -H "Authorization: Bearer KEY:SECRET"
-H "Content-Type: application/json"
-d '{"approved": 1}'
https://example.com/api/v1/reviews/15