Stripe Connection
Connect Stripe to process payments, manage subscriptions, and handle invoices.
Required Credentials
- Secret Key
- Webhook Secret (optional, for webhooks)
Setup Steps
- Go to Stripe Dashboard
- Create an account or sign in
- Go to Developers → API keys
- Copy your Secret key (starts with
sk_) - For webhooks: Go to Developers → Webhooks
- Add an endpoint and copy the Webhook signing secret
- Add credentials to your Workflow Builder connections
Test vs Live Mode
- Use test keys (
sk_test_...) for development - Use live keys (
sk_live_...) for production - Toggle between modes in Stripe Dashboard
Features
- Create charges and payments
- Manage customers
- Create invoices
- Handle subscriptions
- Process refunds
Best Practices
- Always use test mode for development
- Implement proper error handling
- Use webhooks for async event handling
- Store customer IDs for recurring billing
- Handle PCI compliance properly