Skip to main content

Overview

Webhook triggers are part of the workflow system. A webhook trigger creates a public URL that starts a workflow run when an external system sends a request.
Current public webhook triggers are generic workflow webhooks. Native GitHub, Stripe, Slack, and Linear trigger setup can be modeled in your workflow, but the public trigger API itself is cron or webhook.

Create A Webhook Trigger

cURL
The response includes webhookUrl. Store the returned secret if you asked RunTools to generate one.

Invoke A Webhook

The payload becomes the workflow run input.

Manage Webhook Triggers

View Triggered Runs

Security

Use a long random secret for webhook triggers and rotate it when a provider configuration changes. If a trigger has a secret, requests must include that secret in the expected header.
Do not put privileged API keys directly in webhook payloads. Store provider credentials in RunTools secrets or OAuth connected apps and let your workflow use those server-side.