project.resource.unlinked
Resource disconnected from a project.
When this fires
A previously linked Telegram chat is unbound from the resource — either because the creator removed the link or because the bot lost access and the platform reconciled state.
Required ability
project-resource:view-any — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "project.resource.unlinked",
"created_at": "2026-05-18T10:05:00Z",
"api_version": "2026-05-01",
"project_id": "prj_01HX...",
"data": {
"project_id": "prj_01HX...",
"resource_id": "rsr_01HX..."
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always project.resource.unlinked for this event. |
created_at | ISO 8601 timestamp | Server-side emission time. |
api_version | string | Webhook API contract version. |
project_id | string ULID | Project this event belongs to. |
data.project_id | string ULID | Mirrors top-level project_id. |
data.resource_id | string ULID | Resource that was unlinked. The row still exists. |
Caveats
- The resource row is preserved; only the chat binding is removed. To delete it entirely, see
project.resource.deleted. - Active subscribers may receive
member.resource_removedas access is revoked.
Related events
project.resource.linked— paired transition.project.resource.deleted— terminal state.- Project events overview — back to family overview.
How is this guide?