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

# Collection item any activity

> Triggered when any activity occurs on a collection item, including create, update, publish, unpublish, and delete events.

Triggered when any activity occurs on a collection item (create, update, publish, unpublish, delete).

This is a catch-all event that fires for all collection item changes, useful for comprehensive content monitoring across all collections.


## OpenAPI

````yaml /api/openapi/webhooks.yaml webhook collection-item-any-activity
openapi: 3.1.0
info:
  title: ButterCMS Webhooks API
  version: 2.0.0
  description: >
    Webhook event notifications sent by ButterCMS when content changes occur in
    your account.
  contact:
    email: support@buttercms.com
  license:
    name: ButterCMS Terms of Service
    url: https://buttercms.com/terms/
servers:
  - url: https://api.buttercms.com/v2
    description: ButterCMS API v2
security: []
tags:
  - name: Page events
    description: >
      Webhook event notifications sent by ButterCMS when page content changes
      occur in your account.
  - name: Post events
    description: >
      Webhook event notifications sent by ButterCMS when blog post changes occur
      in your account.
  - name: Collection events
    description: >
      Webhook event notifications sent by ButterCMS when collection item changes
      occur in your account.
  - name: Media events
    description: >
      Webhook event notifications sent by ButterCMS when media changes occur in
      your account.
paths: {}

````