Features Pricing Docs Community
Sign In Get Started Free

How do I use webhook triggers in Dranseq?

Asked by Dranseq Team · 13 views · 0 upvotes
Setting up webhooks to trigger sequences from external services.

1 Answer

Accepted Answer
Webhooks let you trigger sequences from any external service.

Setup:
1. Create a new sequence
2. Select "Webhook" as the trigger
3. Dranseq generates a unique URL (e.g., https://app.dranseq.com/api/v1/webhooks/abc123)
4. Copy this URL and paste it into the external service

How it works:
- When the external service sends a POST request to your webhook URL, the sequence triggers
- The request body becomes available as data in subsequent steps

Testing webhooks:
1. Click "Test Trigger" in the sequence editor
2. Send a test request using curl or Postman:

curl -X POST https://app.dranseq.com/api/v1/webhooks/abc123 \
-H "Content-Type: application/json" \
-d '{"name": "Test", "email": "test@example.com"}'

3. The test data appears in the editor for mapping

Use cases:
- Trigger from custom apps or scripts
- Connect services without native integration
- GitHub, Stripe, and Shopify webhook events

Answered by Dranseq Team