Skip to content
GetmeDocs
Sign inCreate account

Getting started

  • Getme developer documentation

API Reference

  • Introduction
  • Authentication
  • Errors
  • Idempotent requests
  • Metadata
  • Pagination
  • Request IDs
  • Versioning
  • Webhooks
  • Event Catalog
  • SDKs and CLI

Core Resources

  • Auth
  • Events

Site Resources

  • Forms
  • Sites

Commerce Resources

  • Brands
  • Categories
  • Products
  • Services

Crm Resources

  • Customers

Other Resources

  • Media

Dev Tools

  • CLIBeta
  • Website source with the CLIBeta
  • Webhooks with the CLIBeta
  • SDKsBeta
  • Node SDKBeta
  • Python SDKBeta

Guides

  • Guides
  • Quickstart
  • Website source workflow
  • Webhook handler

Changelog

  • Changelog
  • June 10, 2026 - Developer platform docs beta
  • July 15, 2026 - Install token lifecycle safety
  • July 15, 2026 - Source-first site development
  • July 15, 2026 - Site source navigation warnings
Loading documentation...
HomeAPI referencewebsite.published

website.published

A website was published successfully.

stablev1websitescope: site_publish:read

Payload

Webhook deliveries use the common event envelope. The event-specific object is available at data.object.

events/public/payloads/website.published.v1.schema.jsonevents/public/examples/website.published.v1.json

data.object fields

FieldTypeRequiredDescription
site_idstringrequiredpattern: ^site_[A-Za-z0-9]+$
domainstring | nulloptional
published_atstringrequiredformat: date-time
version_idstring | nulloptionalpattern: ^wver_[A-Za-z0-9]+$

Example

Event body
{
  "api_version": "2026-06-09",
  "created": "2026-06-09T12:00:00Z",
  "data": {
    "object": {
      "domain": "example.getmeonline.io",
      "published_at": "2026-06-09T12:00:00Z",
      "site_id": "site_Abcdef1234567890Ghijk",
      "version_id": "wver_Abcdef1234567890Ghijk"
    }
  },
  "environment": "test",
  "id": "wevt_Abcdef1234567890Ghijk",
  "livemode": false,
  "object": "event",
  "type": "website.published"
}
data.object
{
  "domain": "example.getmeonline.io",
  "published_at": "2026-06-09T12:00:00Z",
  "site_id": "site_Abcdef1234567890Ghijk",
  "version_id": "wver_Abcdef1234567890Ghijk"
}

On this page

  • Payload
  • Example