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

# Recording updated webhook

The `recording_updated` event type is emitted when some properties of a recording are updated. Whenever one of the following properties in a recording changes, this event will be fired:

* Folder (aka channel)
* Insights template
* Label
* Attached Deal
* Attached Company

Private recordings are excluded.

The payload includes the complete `Recording` entity, similar to the payload sent for a `recording_added` event.


## OpenAPI

````yaml webhook recording_updated
openapi: 3.1.0
info:
  title: Claap API
  description: Development documentation
  version: 0.0.0
servers:
  - url: https://api.claap.io/
security:
  - ApiKey: []
paths: {}
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-Claap-Key

````