Handle incoming webhook
Enterprise feature.
Trigger a tool execution from an external webhook (Stripe, GitHub, etc.).
The request body becomes the tool’s input payload. Returns 202 Accepted immediately and executes the tool asynchronously.
Also handles webhook challenge/verification patterns inline:
- monday.com, Slack: POST body
{ challenge: "..." }→ echoes challenge as JSON - Generic: POST body
{ verification_token: "...", type: "verification" }→ echoes token as JSON
Authorizations
Static API key authentication using Bearer token scheme.
Include your API key in the Authorization header: Authorization: Bearer YOUR_API_KEY
Alternatively, you can use the token query parameter to authenticate.
API keys can be generated in your superglue dashboard.
Path Parameters
ID of the tool to trigger
Query Parameters
Execution mode for system resolution. Use "dev" to execute with sandbox/dev system credentials.
prod, dev Body
Webhook payload from the external service. Becomes the tool's input.
The body is of type object.