pass.window_closed
A time-limited pass access window ended and its holders were removed.
When this fires
A scheduled access window reached its end time. Everyone who held it has been removed from the plan's resources on the connector. For a single-window pass that also ends the purchase: one purchase buys one window, so there is no next window to roll into. For a Pass Series holder only this date's access is stripped; the subscription ends only when the window that closed was the last date they held.
This also fires for a window that never opened because the worker was unavailable for its entire span. Such a window is closed rather than opened late, so nobody is admitted to a window that has already finished.
Caveats
- Timestamps are UTC; convert to the plan's schedule timezone before showing them.
- A subscription that this close ends also emits
subscription.expired, andmember.churnedwhen it was the subscriber's last active subscription. A series holder mid-slate emits neither, onlypass_series.leg_completed. De-duplicate if you consume several of these. - A cancelled window does not emit this event. It emits
pass.window_cancelledinstead, with per-holder detail inpass.holder_movedandpass.holder_stranded.
Related events
pass.window_opened: paired transition.member.resource_removed: per-subscriber revocation.
Header Parameters
t=<unix seconds>,v1=<hex>: the HMAC-SHA256 of "<t>.<raw body>" under the endpoint's secret. Verify it before acting, and refuse a t more than 300 seconds from now. During a secret rotation a v0= signature under the previous secret may precede v1=.
The event's ULID, bare. The envelope's id is the same ULID prefixed evt_, so strip the prefix before comparing. Deduplicate on it: a retry carries the same id.
The event name, the same as the envelope's type.
Always application/json.
Always Subscriby-Webhooks/1.0.
Request Body
application/json
The signed JSON envelope posted to your endpoint.
TypeScript Definitions
Use the request body type in TypeScript.
The envelope every event is delivered in.
Response Body
Example Requests
/pass.window_closedHow is this guide?