---
title: "List reviews"
method: GET
path: "/api/business/{businessId}/branch/{branchId}/review"
tags: ["Review"]
---

# List reviews

`GET /api/business/{businessId}/branch/{branchId}/review`

Get a list of reviews for the specified business id and branch id. List can be filtered by client id, client's first name or surname, staff member's first name or surname and date of review

## Path parameters

- `businessId` string, required
- `branchId` string, required

## Query parameters

- `clientId` string
- `clientName` string
- `staffName` string
- `reviewDate` string

## Response `200`

Reviews listed

- DataPagedModelReviewResponse
  - `_embedded` object
    - `reviews` ReviewResponse[]
      - `reviewId` string
      - `clientId` string
      - `clientFirstName` string
      - `clientLastName` string
      - `reviewDate` string
      - `visitDate` string
      - `staffId` string
      - `staffFirstName` string
      - `staffLastName` string
      - `text` string
      - `rating` integer
      - `facebookReview` boolean
      - `twitterReview` boolean
  - `page` PageMetadata
    - `size` integer
    - `totalElements` integer
    - `totalPages` integer
    - `number` integer

## Other responses

- `400` — Bad Request
- `404` — Business or branch with the specified ids don't exist
- `429` — Request rate limit exceeded. Current limit set to 100 rps.
- `500` — Internal Server Error

---

[API](https://skmtc.net/phorest/apis/third-party-api.md) · [All operations](https://skmtc.net/phorest/apis/third-party-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/phorest/third-party-api/revisions/2218bc90d39c/schema)
