Source type
Stripe Source Configuration
Stripe sources receive payment, billing, checkout, subscription, dispute, invoice, and customer events with endpoint-secret verification.
Stripe configuration
Create a Stripe source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured Webhook Signing Secret values for provider signature. FastHook uses these settings to validate each Stripe delivery before it enters the routing workflow.
Source TypeSTRIPE
Allowed methodsPOST, PUT, PATCH, DELETE
AuthenticationProvider signature
Credential fieldsWebhook Signing Secret
{
"type": "STRIPE",
"config": {
"auth_type": "PROVIDER_SIGNATURE",
"auth": {
"provider": "STRIPE",
"webhook_signing_secret": "provider-secret"
},
"allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
}
}Stripe request contract
FastHook reads stripe-signature, validates the timestamp, and verifies the v1 HMAC-SHA256 signature over timestamp + '.' + raw body.
Stripe headers
Preserve stripe-signature when sending Stripe test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.
stripe-signatureContains timestamp t and one or more v1 HMAC signatures.
Stripe setup
- Create a Stripe webhook endpoint or event destination that points to the FastHook Source URL.
- Copy the Stripe endpoint signing secret, usually starting with whsec_.
- Paste that value into FastHook's Webhook Signing Secret field.
Stripe routing hints
- Payment, checkout, invoice, subscription, dispute, customer, and charge events usually route by the Stripe event type in the payload.
- Use the Stripe event id as the first idempotency key before replaying billing traffic.