events.iterate.com

Event type

events.iterate.com/project/custom-domain-configured

The hostname is configured and its KV routing registration points at this project.

Payload schema

hostnamestring

The configured hostname.

kind"cloudflare" | "direct"

Whether Cloudflare for SaaS or a direct Worker route serves it.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "hostname": {
      "type": "string",
      "description": "The configured hostname."
    },
    "kind": {
      "type": "string",
      "enum": [
        "cloudflare",
        "direct"
      ],
      "description": "Whether Cloudflare for SaaS or a direct Worker route serves it."
    }
  },
  "required": [
    "hostname",
    "kind"
  ]
}