# Collection Item - Published Triggered when a collection item is published or republished. This event fires when: - A draft collection item is published for the first time - An already published item is republished after changes - A scheduled item is automatically published Endpoint: POST collectionitem-published Version: 2.0.0 Security: , ## Request fields (application/json): - `data` (object) Webhook data payload for collection item events - `data.id` (string, required) Collection key identifier Example: "your_collection" - `data.itemid` (string, required) API URI for retrieving the specific collection item Example: "/v2/content/?keys=your_collection[_id=1234]" - `data.label` (string, required) Display label for the collection item Example: "Your Collection Item" - `data.editor` (string, required) Full name of the editor who made the change Example: "John Doe" - `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) Current collection item status Enum: "draft", "published", "deleted" - `webhook` (object) Webhook metadata included in all webhook payloads - `webhook.event` (string, required) The event type that triggered this webhook Enum: "collectionitem.published", "post.all", "post.published", "post.draft", "post.delete", "page.all", "page.published", "page.draft", "page.delete", "page.unpublished", "collectionitem.all", "collectionitem.draft", "collectionitem.delete", "collectionitem.unpublished", "media.videouploaded" - `webhook.target` (string, required) The webhook endpoint URL that received this notification ## Response 200 fields