# Page - Unpublished Triggered when a published page is unpublished (but not deleted). This event fires when: - A published page is deliberately unpublished but kept in the system - A page is temporarily taken offline without permanent deletion Endpoint: POST page-unpublished Version: 2.0.0 Security: ## Request fields (application/json): - `data` (object) Webhook data payload for page events - `data.id` (string, required) Page slug Example: "example-page-slug" - `data.buttercms_id` (integer, required) Page numeric ID Example: 1234 - `data.page_type` (string, required) Page type key, or '*' for single pages Example: "news" - `data.editor` (string, required) Full name of the editor who made the change Example: "John Doe" - `data.name` (string, required) Human-readable page name Example: "Example Page" - `data.timestamp` (string, required) Current timestamp when webhook was generated Example: "2024-01-15T18:11:09" - `data.locale` (string,null) Locale code for localized content, null for default locale Example: "en" - `data.status` (string, required) Current page status Enum: "draft", "published", "scheduled", "deleted" - `data.updated` (string, required) Last updated timestamp in ISO 8601 format Example: "2024-01-15T18:11:09.791061Z" - `data.published` (string,null) Published timestamp in ISO 8601 format, null if not published Example: "2024-01-15T18:10:00.000000Z" - `data.scheduled` (string,null) Scheduled publication timestamp in ISO 8601 format, null if not scheduled - `webhook` (object) Webhook metadata included in all webhook payloads - `webhook.event` (string, required) The event type that triggered this webhook Enum: "page.unpublished", "post.all", "post.published", "post.draft", "post.delete", "page.all", "page.published", "page.draft", "page.delete", "collectionitem.all", "collectionitem.published", "collectionitem.draft", "collectionitem.delete", "collectionitem.unpublished", "media.videouploaded" - `webhook.target` (string, required) The webhook endpoint URL that received this notification ## Response 200 fields