connector.disconnected
An installation was disconnected — the connector withdrew it, the credentials were wiped, the row stays.
When this fires
A creator disconnects an installation, from the Connectors tab, through DELETE …/installation or the disconnect_connector tool. The connector withdraws the installation on its platform, the credentials are wiped and the installation turns disconnected; grants, resources, plans and identities are untouched and members keep the access they hold. Disconnecting an installation already disconnected fires nothing.
Required ability
project-connector:view — token must carry this at mint time to subscribe an endpoint to this event.
Payload
{
"id": "evt_01HX...",
"type": "connector.disconnected",
"created_at": "2026-09-12T11:00:00Z",
"api_version": "2026-05-01",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13",
"data": {
"connector": "telegram",
"installation_id": "3b8f0c6e-2d41-4a97-9e5f-1c7d6b2a8e40",
"project_id": "7f3d1c92-8b45-4e6a-9d21-5c8e0a4b6f13"
}
}Field reference
| Field | Type | Notes |
|---|---|---|
id | string ULID | Unique event id, prefixed evt_. Use for idempotent processing. |
type | string | Always connector.disconnected 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.connector | string | The connector key. |
data.installation_id | string UUID | The installation row, which stays and can be connected again. |
data.project_id | string UUID | Mirrors top-level project_id. |
Caveats
- Disconnecting is not uninstalling: nothing is revoked and no plan is touched. Uninstalling, with its impact preview, is a separate act and fires
connector.uninstalled.
Related events
connector.connected— the reverse.connector.status_changed— a platform-side revocation, as opposed to the creator's own disconnect.- Connector events overview — back to family overview.
How is this guide?