List Customer Reviews
Each row carries the reviewed product and the customer as nested objects. Images are detail-only.
Overview
See the Customer Reviews overview for the full feature flow.
All admin endpoints require an admin Bearer token — see Authentication.
| Endpoint | Method |
|---|---|
/api/admin/customers/reviews | GET |
Query Parameters
| Parameter | Type | Description |
|---|---|---|
page, per_page | integer | Pagination. |
status | string | pending, approved, disapproved. |
rating | integer | Exact rating (1–5). |
product_id | integer | Filter by product. |
customer_id | integer | Filter by customer (nullable — guest reviews allowed). |
created_at_from / _to | datetime | Range. |
sort | string | id (default desc), rating, created_at. |
order | string | asc, desc. |
The reviewed product (id / name / sku) and the customer (id / name / email, null for guest reviews) are nested objects on every row. The images array is detail-only — request a single review to see it.

