v1

latestOpenAPI 3.1.0© Copyright Partoo2026-07-26163503484.0 KB
Reviews

Create a review reply template

This endpoint lets you create a review reply template.

post/reviews/template

Request body

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

negativeboolean required

Template is made for negative reviews (ex from 1 to 2 stars on gmb)

neutralboolean required

Template is made for neutral reviews (ex 3 stars on gmb)

positiveboolean required

Template is made for positive reviews (ex from 4 to 5 stars on gmb)

textstring 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.

titlestring required

Template title

Example request

{
  "language": "fr",
  "text": "hello @[](client_full_name),\nThanks from the team at @[](business_name).\n@[](my_first_name)"
}

Response

OK

idinteger

Template id

org_idinteger

Unique identifier of an organization in Partoo.

update_datestring datetime

Template update date

creation_datestring 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

titlestring

Template title

textstring

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.

negativeboolean

Template is made for negative reviews (ex from 1 to 2 stars on gmb)

neutralboolean

Template is made for neutral reviews (ex 3 stars on gmb)

positiveboolean

Template is made for positive reviews (ex from 4 to 5 stars on gmb)

Example response

{
  "id": 34,
  "org_id": 42,
  "update_date": "2017-08-01T19:15:54.256000+02:00",
  "creation_date": "2017-08-01T19:15:54.256000+02:00",
  "language": "fr",
  "text": "hello @[](client_full_name),\nThanks from the team at @[](business_name).\n@[](my_first_name)"
}