Platform — Overview

Integrations

Connect Ventryx to the tools your team already uses. First-party integrations and a flexible webhook system mean you can fit Ventryx into any stack without custom glue code.

Native integrations

Ventryx ships pre-built connectors for the most common services in modern engineering and operations stacks:

IntegrationCategoryWhat it does
StripeBillingSync usage metering, trigger invoicing, manage subscriptions
SlackNotificationsSend workflow events and approval requests to channels or DMs
GitHubCI/CDTrigger workflows on PR merge, release, or issue events
PagerDutyAlertingRoute high-severity events directly to on-call schedules
DatadogObservabilityForward request metrics and logs to your Datadog workspace
AWS S3StorageArchive event logs and pipeline outputs to S3 buckets
Google WorkspaceProductivitySend approval requests and notifications to Gmail and Calendar

Webhook integrations

For services not covered by native integrations, register a webhook endpoint to receive real-time event payloads. Any service that accepts HTTP POST requests can be integrated this way.

Register a webhook
curl -X POST https://api.ventryx.io/v1/webhooks \
  -H "Authorization: Bearer $VENTRYX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://yourservice.com/hooks/ventryx",
    "events": ["workflow.completed", "approval.requested"]
  }'

OAuth 2.0 apps

Build OAuth-connected apps that let your customers authorize Ventryx to act on their behalf. Register your app in Settings → Developer Apps to receive a client ID and secret, then implement the standard authorization code flow.

Authorization URL
https://auth.ventryx.io/oauth/authorize
  ?client_id=your_client_id
  &redirect_uri=https://yourapp.com/callback
  &scope=workflows:read+events:write
  &response_type=code
  &state=random_csrf_token

Zapier and Make

Ventryx is available as a native app on Zapier and Make (formerly Integromat), enabling no-code connections to 5,000+ services. Search for "Ventryx" in either platform to get started.