Supported patterns
| Category | Examples |
|---|---|
| Calendars | Google Calendar, Calendly |
| Messaging | Twilio SMS, SendGrid email |
| CRM | HubSpot, Salesforce, Zoho (often via OAuth or automation platforms) |
| Automation | Make.com / Zapier webhooks for hybrid flows |
Custom APIs
Operators can call HTTPS APIs you control (API keys, OAuth, or bearer tokens), subject to your security review.Model the contract
Define request/response shapes, timeouts, and what the operator may send (PII minimization).
Store secrets safely
Prefer vault or integration storage instead of embedding secrets in operator-visible JSON.
Webhooks
Inbound automation callbacks should:- Verify signatures (for example HMAC-SHA256 on the raw body).
- Support idempotency for safe retries where your backend allows it.
- Return fast HTTP responses and offload heavy work to async workers.
Related
Operators
How agents are allowed to use integrations during a call.
Quickstart
End-to-end setup before tightening integrations in production.