recovery.resource_failed_over
Automatic failover swapped a banned channel or group for its standby without the creator — the failover you sleep through.
When this fires
A probe finds a channel gone or the bot removed from it, the project has Automatic Failover switched on, a healthy standby is linked, and the allowance permits: the platform points the resource at its standby, revokes the old links and queues every active member's re-admission, all without the creator. This event fires the moment the resource points at the standby; it sits under a recovery whose recovery.operation_started carries automatic: true.
Required ability
project-recovery:view — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "recovery.resource_failed_over",
"created_at": "2026-09-12T03:19:42Z",
"api_version": "2026-05-01",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"data": {
"operation_id": "9a4d2e71-5b38-4c6f-8e12-3d7c9b0a5f21",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"resource_id": "b73c5f21-9d80-4a6e-8215-4f70ce13a9d6",
"resource_title": "Lounge",
"connector": "telegram",
"replaced_at": "2026-09-12T03:19:41Z"
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always recovery.resource_failed_over 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.operation_id | string UUID | The automatic recovery the swap ran under; its roll call says how re-admission is going. |
data.project_id | string UUID | The project. |
data.resource_id | string UUID | The resource, now pointing at the standby. |
data.resource_title | string | null | The resource's title, as plans show it. |
data.connector | string | null | The connector the chats live on. |
data.replaced_at | ISO 8601 timestamp | When the resource was re-pointed. |
Members the bot cannot reach
A failover emails the members the bot can no longer message, at a per-email fee the creator accepted when switching failover on. The roll call's emailed counter says how many.
Caveats
- The standby that was consumed fires
recovery.standby_removedwithreason: usedbeside this event. project.resource.updatedalso fires for the same resource withchanges.space_id, as it does for any swap.
Related events
recovery.resource_replaced— the same swap made by the creator.recovery.operation_reverted— the creator put the old chat back.- Recovery events overview — back to family overview.
How is this guide?
recovery.installation_failed_over
Automatic failover switched a project onto its standby bot without the creator, because the platform refused the live one — the bot-side twin of resource_failed_over.
recovery.resource_replaced
The creator pointed a resource at a replacement channel or group — in a recovery after a ban, or on demand for a healthy resource.