Chatwoot management bridge with REST API and async Python client
Project description
vital-chatwoot-bridge
Chatwoot management bridge with REST API and async Python client.
What It Does
- REST Management API — CRUD endpoints for Chatwoot contacts, conversations, messages, agents, and inboxes, secured with Keycloak JWT
- Unified Messaging — Single
POST /messagesendpoint for inbound and outbound messages across SMS, email, and iMessage (via LoopMessage) - Webhook Bridge — Routes Chatwoot webhook events to AI agents via WebSocket (AIMP protocol)
- API Inbox Integrations — LoopMessage (bidirectional iMessage) and Attentive (inbound aggregation)
Client Library
Install with client dependencies only (no server deps):
pip install vital-chatwoot-bridge[client]
Usage
from vital_chatwoot_bridge.client.client import ChatwootBridgeClient
async with ChatwootBridgeClient(
base_url="https://bridge.example.com",
keycloak_url="https://keycloak.example.com",
realm="myrealm",
client_id="my-client",
client_secret="secret",
) as client:
# Contacts
contacts = await client.list_contacts(page=1)
contact = await client.create_contact(name="Jane Doe", email="jane@example.com")
# Conversations
convs = await client.list_conversations(status="open")
summary = await client.account_summary()
# Messages
result = await client.post_message(
direction="outbound",
contact_identifier="jane@example.com",
message_content="Hello from the bridge!",
inbox_id=1,
)
# Force a new conversation instead of reusing an open one
result = await client.post_message(
direction="outbound",
contact_identifier="+15551234567",
message_content="New thread",
inbox_id=6,
conversation_mode="create_new",
)
Exception Handling
from vital_chatwoot_bridge.client.exceptions import (
BridgeClientError,
AuthenticationError,
NotFoundError,
ValidationError,
ServerError,
)
try:
contact = await client.get_contact(999999)
except NotFoundError:
print("Contact not found")
except AuthenticationError:
print("Token expired or invalid")
Response Models
from vital_chatwoot_bridge.client.models import PaginatedResponse, SingleResponse
All list endpoints return PaginatedResponse (with .data, .meta).
All single-item endpoints return SingleResponse (with .data).
Server Deployment
See aws_deploy/README.md for ECS Fargate deployment.
Local Development
# Start with Docker Compose
docker compose up --build
# Run endpoint tests
python -m test_endpoint_scripts.test_contacts
python -m test_endpoint_scripts.test_conversations
python -m test_endpoint_scripts.test_messages --case m-send-lm -v
# List all test case IDs
python -m test_endpoint_scripts.test_messages --list
Configuration
All configuration via environment variables. Hierarchical config (inbox mappings, API integrations) uses CW_BRIDGE__ prefix with __ separator. See env.example.
Architecture
vital_chatwoot_bridge/
api/
routes.py # Health endpoint
api_inbox_routes.py # LoopMessage / Attentive inbound/outbound
chatwoot_management_routes.py # Management REST API (36 endpoints)
chatwoot/
api_client.py # Chatwoot API client (httpx, retries)
management_models.py # Pydantic request/response models
client/ # Standalone client library
client.py # ChatwootBridgeClient (async)
auth.py # Keycloak JWT token management
base.py # HTTP client with error mapping
models.py # Response envelope models
exceptions.py # Typed exception hierarchy
core/
config.py # CW_BRIDGE__ env parser integration
utils/
env_parser.py # Generic hierarchical env var parser
jwt_verify.py # Keycloak JWT verification (server-side)
logging_config.py # JSON / text log formatting
handlers/
webhook_handler.py # Chatwoot webhook → AI agent routing
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vital_chatwoot_bridge-0.1.3.tar.gz.
File metadata
- Download URL: vital_chatwoot_bridge-0.1.3.tar.gz
- Upload date:
- Size: 108.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
020b523b21bb2dfbaf889f55c97eb5c06c3af24951ff569ab24812dbc2c0f553
|
|
| MD5 |
b2b8172bd0776efcbc082a25248b8226
|
|
| BLAKE2b-256 |
947b1845f502402dc299551f764c8d2b234c86f43730ed6e60db43d59491207e
|
File details
Details for the file vital_chatwoot_bridge-0.1.3-py3-none-any.whl.
File metadata
- Download URL: vital_chatwoot_bridge-0.1.3-py3-none-any.whl
- Upload date:
- Size: 131.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01e59054d1e5e8e562670e1c90c295f3a2aff25e6d31715de012f1ecf453fd4c
|
|
| MD5 |
7a57e2e47420d68520f24f767cd081e6
|
|
| BLAKE2b-256 |
133d441941c1b7d2f4ae9fdc3b1db17a6a422de6feca20310876d913fe0a4fa5
|