pass.window_cancelled
A creator cancelled a time-limited pass access window, and its holders were resettled.
When this fires
A creator cancelled a scheduled access window from Manage Access Windows — a postponed match, a called-off session. This is never automatic: regeneration, slot edits and plan changes all leave sold windows alone, so cancelling is always a deliberate act.
By the time this fires every holder has already been resettled. Each one was either moved to
the next available window on the same plan, or — when nothing suitable was left — had their
pass ended and was told to ask the creator for a refund. The tallies are in the payload, and
the per-holder detail arrives as pass.holder_moved and
pass.holder_stranded for ordinary passes, or
pass_series.leg_substituted and
pass_series.leg_dropped for season-ticket
holders.
Cancelling cannot be undone. The window keeps its start time permanently, so the same instant can never be re-created on that plan — schedule regeneration skips it and adding it by hand is refused.
Required ability
project-subscription-plan:view — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "pass.window_cancelled",
"created_at": "2026-09-18T09:14:22Z",
"api_version": "2026-05-01",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"data": {
"plan_id": "c4e82f16-93a7-4d5b-b81c-6e0f27a94d3b",
"window_id": "3d5a8c72-b016-4e94-8fa7-61c209d4e738",
"starts_at": "2026-09-20T13:00:00+00:00",
"ends_at": "2026-09-20T19:00:00+00:00",
"rebound": 38,
"refund_due": 3,
"subscribers_affected": 41
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always pass.window_cancelled for this event. |
created_at | ISO 8601 timestamp | Server-side emission time. |
api_version | string | Webhook API contract version. |
project_id | string UUID | Project this event belongs to. |
data.plan_id | string UUID | The pass plan the window belonged to. |
data.window_id | string UUID | The access window that was cancelled. |
data.starts_at | ISO 8601 timestamp | Window start, always UTC. |
data.ends_at | ISO 8601 timestamp | Window end, always UTC. |
data.rebound | integer | Holders moved to another window on the same plan. |
data.refund_due | integer | Holders whose pass ended because nothing was available. These are owed money. |
data.subscribers_affected | integer | rebound + refund_due. |
Caveats
- Timestamps are UTC — convert to the plan's schedule timezone before showing them.
- The counts exclude holders who were paused, past due, or had already cancelled their own
pass. Those are left bound to the cancelled window and are not resettled or messaged, so
reconciling refunds from
refund_duealone will miss them. They also exclude season-ticket holders who lost this one date: those are resettled and messaged, and emitpass_series.leg_dropped, but are counted in neitherrebound,refund_due, norsubscribers_affected. refund_dueis a count, not a list. Consumepass.holder_strandedfor the identities and amounts — nothing in the dashboard records them durably.- No refund is issued by Subscriby. The buyer is told to contact the creator.
- Cancelling a window that is already Open evicts its holders immediately — anyone already admitted is removed from the Telegram resources and their invite links stop working within seconds. They are not charged again and receive fresh links automatically when their replacement window opens.
- A cancelled window never emits
pass.window_closed.
Related events
pass.holder_moved— one per resettled holder.pass.holder_stranded— one per holder owed a refund.- Pass events overview — back to family overview.
How is this guide?