---
title: "Create a review reply template"
method: POST
path: "/reviews/template"
tags: ["Reviews"]
---

# Create a review reply template

`POST /reviews/template`

This endpoint lets you create a review reply template.

## Request body

- object — Request body to post/edit a reply
  - `language` 'fr' | 'en' | 'es' | 'it' | 'pt-br' | 'de' | 'ar' | 'nl' | 'pl' | 'cs' | 'ca' | 'sk' | 'pt' | 'lv' | 'ro' | 'bg' | 'hu', required — Available language in the application
  - `negative` boolean, required — Template is made for negative reviews (ex from 1 to 2 stars on gmb)
  - `neutral` boolean, required — Template is made for neutral reviews (ex 3 stars on gmb)
  - `positive` boolean, required — Template is made for positive reviews (ex from 4 to 5 stars on gmb)
  - `text` string, required — 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`.
  - `title` string, required — Template title

## Response `200`

OK

- Template — Review's reply template
  - `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)
