> ## Documentation Index
> Fetch the complete documentation index at: https://docs.worthai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Integration

> Sample payloads for Integration webhook events

| Webhook Event              | Description                                                   |
| -------------------------- | ------------------------------------------------------------- |
| `integration.connected`    | Triggered when an integration is connected for a business.    |
| `integration.disconnected` | Triggered when an integration is disconnected for a business. |
| `integration.failed`       | Triggered when an integration fails for a business.           |

## integration.connected

```json theme={null}
{
  "event_id": "c4d5e6f7-8901-2345-abcd-ef4567890123",
  "event_type": "integration.connected",
  "timestamp": "2025-11-20T08:15:00.000Z",
  "payload": {
    "business_id": "4bbbcdd9-4f3b-4c29-8bd3-34066a447ff8",
    "case_id": "57128749-b476-4d6c-97cd-19494e303aea",
    "integration_category": "Taxation",
    "integration_platform": "Tax Status"
  }
}
```

## integration.disconnected

```json theme={null}
{
  "event_id": "d5e6f789-0123-4567-abcd-ef5678901234",
  "event_type": "integration.disconnected",
  "timestamp": "2025-11-20T09:30:00.000Z",
  "payload": {
    "business_id": "4bbbcdd9-4f3b-4c29-8bd3-34066a447ff8",
    "integration_category": "Banking",
    "integration_platform": "Plaid"
  }
}
```

## integration.failed

```json theme={null}
{
  "event_id": "e6f78901-2345-6789-abcd-ef6789012345",
  "event_type": "integration.failed",
  "timestamp": "2025-11-20T10:45:00.000Z",
  "payload": {
    "case_id": "57128749-b476-4d6c-97cd-19494e303aea",
    "integration_category": "VERIFICATION",
    "status": "FAILED",
    "business_id": "4bbbcdd9-4f3b-4c29-8bd3-34066a447ff8",
    "business_name": "Acme Corporation"
  }
}
```
