pass.holder_missed
A window closed and one holder never turned up for it.
When this fires
An access window closed and a specific holder was recorded as Missed: they paid, the window ran, and they never joined.
pass.window_closed already reports an aggregate subscribers_affected, which is the wrong half for outreach. Who did not turn up is the useful question, the answer is already computed and stored per holder, and this is that answer.
Missed is a claim about the customer, so it is made carefully. A holder is only marked Missed when they were never admitted. If they bought so late that the window was effectively over before their payment cleared, the pass is settled as ended rather than missed and this event does not fire; Subscriby will not tell you a paying customer no-showed when the timing was ours. One exception runs the other way: when a window never opened at all because of a worker outage, its ungranted holders are recorded as Missed and this event fires for each of them, so treat a burst of these for a single window as an outage signal rather than as no-shows.
Caveats
join_requestedis the field worth branching on. A holder who never queued probably never saw the message; that is a reachability problem. A holder who queued and still did not appear made a choice, and chasing them the same way reads as nagging.- On a series this fires per date. Missing one date of a season affects nothing else: the rest of the slate runs as booked, so treat a single occurrence as a data point rather than a churn signal.
pass_series.completedcarries the final tally, which is the figure that actually means something. - It fires alongside
pass.window_closedfor the same window. Both are correct (one is per holder, one is the aggregate) so an endpoint subscribed to both receives one of each.
Related events
pass.holder_queued: the engagement this is the absence of.pass.window_closed: the aggregate for the same window.pass_series.leg_completed: the same close, seen as progress through a season.
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.holder_missedHow is this guide?