creator.fan.status_changed fires when a fan’s status relative to the creator
changes. It is a new event with no legacy flat equivalent. The change_type
field discriminates what changed:
mute: the creator muted or unmuted the fan (stateismuted/unmuted).presence: the fan came online or went offline (stateisonline/offline).
read:chat scope. Delivered in the
Standard-Webhooks envelope; the fields below
describe the data object.
Presence changes are high-volume and delivered only to connector destinations
that opt in; they may not be enabled in every environment. Mute changes fire
on every creator mute/unmute action.
Fan status resource
| Field | Type | Description |
|---|---|---|
object | string | Always "fan_status" |
change_type | string | mute or presence |
state | string | muted | unmuted (for mute), or online | offline (for presence) |
changed_at | string | null | ISO 8601 time the change occurred |
fan | object | { uuid, email } of the fan (email may be null) |
creator | object | { uuid } of the creator |
metadata | object | Your passthrough metadata map |