> ## Documentation Index
> Fetch the complete documentation index at: https://developers.partoo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Review updated

> This event is triggered when a review is updated. This can happen in one of these cases:
  - One or more attributes of a review have been updated (including a content or rating update from its author) 
  - A tag has been assigned or unassigned to this review on Partoo
  - A review has been deleted - this could happen in two ways (see more info below):
    - Permanently, by the author.
    - Temporarily unavailable due to a bug in Google’s system
  - If a review reappears after being temporarily unavailable


  ⚠️ **More info on review deletes:**

  Because of a bug in Google’s system, some reviews may temporarily disappear from their data as if they were deleted, even though they were not, and then reappear later.

  When a review goes missing, we cannot determine whether it was actually deleted or just affected by this bug.
  We must consider this review as if it can reappear in the future. For that reason, a `review_updated` event will be sent in both cases.

  Here is a sample scenario:
   - September 4: A review is edited by its author. 
     - A `review_update` event is triggered, showing the review updated content.
   - September 10: The review disappears due to the Google bug.
     - Another `review_update` event is triggered, with the review state set at `deleted` 
   - September 15: The review becomes visible again.
     - Another `review_update` is then triggered, showing the review state before the soft delete 




## OpenAPI

````yaml /assets/openapi/openapi-bundled.yaml webhook reviewUpdated
openapi: 3.1.0
info:
  title: Partoo Rest API
  version: v2
  license:
    name: © Copyright Partoo
    url: https://www.partoo.co/en/gtu-api/
  x-logo:
    url: >-
      https://partoo-client-images.s3.amazonaws.com/logo-partoo-restapi-white.png
  description: >
    ## Introduction

    The Partoo Rest API allows you to automate all the actions that are possible
    to do in the Partoo Web Application.


    The Partoo Rest API can be used for many different purposes:
      - Create/update/delete your businesses & users if you are a client.
      - Create/subscribe/manage organizations, businesses & users if you are a reseller.
      - Retrieve data on businesses you have access to if you are a publisher.
      - ...
servers:
  - url: https://api.partoo.co/v2
    description: Production server
  - url: https://api.sandbox.partoo.co/v2
    description: Sandbox server (dev environment for clients & partners)
security:
  - ApiKeyAuth: []
paths: {}
components:
  securitySchemes:
    ApiKeyAuth:
      description: >
        The authentication system on Partoo API is using API Key that should be
        put in the header of the request (the name of the header is `x-APIKey`).
        An api_key is linked to a user. This user's role will give you different
        access level to the API features.
      type: apiKey
      in: header
      name: x-APIKey

````