---
title: "Search for review reply templates"
method: GET
path: "/reviews/templates/search"
tags: ["Reviews"]
---

# Search for review reply templates

`GET /reviews/templates/search`

This endpoint lets you browse through all your reply review templates.

## Query parameters

- `page` integer
- `positive` boolean
- `neutral` boolean
- `negative` boolean
- `language__in` Lang[]
- `title_query` string
- `text_query` string

## Response `200`

OK

- object
  - `page` integer — Current page number
  - `max_page` integer — Last page number
  - `count` integer — Number of resources complying with filters
  - `reply_templates` Template[] — List of reply review templates
    - `id` integer — Template id
    - `org_id` integer — Unique identifier of an organization in Partoo.
    - `update_date` string, datetime — Template update date
    - `creation_date` string, datetime — Template creation date
    - `language` 'fr' | 'en' | 'es' | 'it' | 'pt-br' | 'de' | 'ar' | 'nl' | 'pl' | 'cs' | 'ca' | 'sk' | 'pt' | 'lv' | 'ro' | 'bg' | 'hu' — Available language in the application
    - `title` string — Template title
    - `text` string — The content of the reply template. Placeholders are recognisable within the text by this exact markup `@[](name_of_the_placeholder)`. Where `name_of_the_placeholder` is the `value` field taken from the `GET placeholders` operation. Example of usable placeholder values: `client_full_name`, `client_first_name`, `business_name`, `my_first_name`.
    - `negative` boolean — Template is made for negative reviews (ex from 1 to 2 stars on gmb)
    - `neutral` boolean — Template is made for neutral reviews (ex 3 stars on gmb)
    - `positive` boolean — Template is made for positive reviews (ex from 4 to 5 stars on gmb)

## Other responses

- `401` — You are not authenticated
- `403` — You are not allowed to perform this action
- `404` — Resource does not exist

---

[API](https://skmtc.net/partoo/apis/partoo-rest-api.md) · [All operations](https://skmtc.net/partoo/apis/partoo-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/partoo/partoo-rest-api/revisions/3652d8b1a8b3/schema)
