> For the complete documentation index, see [llms.txt](https://docs.kick.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kick.co/api/webhooks/plaid-connection-disconnected.md).

# plaid.connection.disconnected

A bank stops accepting the credentials behind a Plaid connection often enough that it needs handling: consent expires, the account holder changes a password, or the institution starts asking for a factor Plaid cannot complete. Until someone reconnects it, that account imports nothing, and the books quietly go stale.

This event is how your integration hears about it as it happens instead of noticing a gap at close.

### When it fires

The event is sent once, on the transition into the broken state. Kick does not re-send it while the connection stays broken, and it is held back when a healthy direct bank connection in Kick still covers the same account.

Only connections your integration created through [Plaid Connections](/api/api-reference/plaid-connections.md) reach your endpoint.

### Payload

```json
{
  "event": "plaid.connection.disconnected",
  "version": 1,
  "occurredAt": 1723363200,
  "payload": {
    "connectionId": "0f1e4e0c-5f2c-4f0e-9d4a-3b3c2b7c9a11",
    "workspaceId": "8d3a1b52-9f1d-4a7e-b0a1-2c5d6e7f8a90",
    "entityId": "b6c4d2e1-7a3f-4c8b-9e0d-1f2a3b4c5d6e",
    "bankName": "Mercury",
    "errorCode": "disconnected"
  }
}
```

`payload` carries:

| Field          | Type   | Notes                                                                                                                |
| -------------- | ------ | -------------------------------------------------------------------------------------------------------------------- |
| `connectionId` | uuid   | The connection's `id` on [Plaid Connections](/api/api-reference/plaid-connections.md), so you can read or delete it  |
| `workspaceId`  | uuid   | Workspace the entity belongs to                                                                                      |
| `entityId`     | uuid   | Entity the connection's account is assigned to                                                                       |
| `bankName`     | string | Institution name as Kick recorded it                                                                                 |
| `errorCode`    | string | `disconnected` when the bank needs re-authentication, `mfa_required` when it asks for a factor Plaid cannot complete |

### Handling it

The connection stays broken until the business owner reconnects the account, so the useful response is to get it in front of them rather than to retry anything.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.kick.co/api/webhooks/plaid-connection-disconnected.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
