Integrations
Connect Ventryx to the tools your team already uses. First-party integrations, OAuth apps, and a webhook system mean you can fit Ventryx into any stack without custom glue code.
Available integrations
| Integration | Category | What it enables |
|---|---|---|
| Stripe | Billing | Usage metering, subscription management, invoice triggers |
| Slack | Notifications | Send messages, approval requests, and alerts to channels or DMs |
| GitHub | CI/CD | Trigger workflows on PR merge, release publish, or issue events |
| PagerDuty | Alerting | Create incidents and alerts on automation failure or threshold breach |
| Datadog | Observability | Forward metrics and logs to your Datadog workspace |
| Twilio | SMS | Send SMS notifications from any workflow step |
| Google Workspace | Productivity | Send Gmail notifications and Google Calendar events |
| AWS S3 | Storage | Archive event logs and pipeline outputs |
| Zapier / Make | No-code | Connect to 5,000+ apps without code |
Connecting an integration
Most integrations are configured in Settings → Integrations via OAuth or API key. Once connected, the integration is available as a step type or notification channel in any workflow.
Custom integrations via webhooks
For any service not listed above, use outbound webhooks to push data, or inbound webhook triggers to receive it. Any service that speaks HTTP can be integrated.
Use a webhook step to call any external API
{
"type": "http_request",
"method": "POST",
"url": "https://your-crm.com/api/contacts",
"headers": { "Authorization": "Bearer {{env.CRM_API_KEY}}" },
"body": {
"name": "{{event.data.customer.full_name}}",
"email": "{{event.data.customer.email}}"
}
}
Building your own integration
Use Ventryx's OAuth 2.0 app registration to build a product integration that allows your customers to connect their Ventryx organizations to your application. See the Platform Integrations page for OAuth setup instructions.