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

# Localized blog post published

> Triggered when a localized blog post is published or republished. Includes locale in the payload.

Triggered when a localized blog post is published or republished.

This event fires when:

* A draft blog post in a specific locale is published for the first time
* An already published localized post is republished after changes
* A scheduled localized post is automatically published

The payload includes the `locale` field identifying which locale variant was published.


## OpenAPI

````yaml /api/openapi/webhooks.yaml webhook blog-post-locale-published
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: {}

````