Source type
Custom Webhook Source Configuration
Use a custom webhook source when the producer is an internal service, a provider FastHook does not have a preset for yet, a publish endpoint for outbound webhook messages, or a test client that can send ordinary HTTP requests.
Custom Webhook configuration
Create a Custom Webhook source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured Optional Basic Auth, API key, or HMAC fields values for optional source auth. FastHook uses these settings to validate each FastHook delivery before it enters the routing workflow.
Source TypeWEBHOOK
Allowed methodsPOST, PUT, PATCH, DELETE
AuthenticationOptional source auth
Credential fieldsOptional Basic Auth, API key, or HMAC fields
{
"type": "WEBHOOK",
"config": {
"auth_type": "HMAC",
"auth": {
"signature_header": "x-signature",
"secret": "shared-secret"
},
"allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
}
}Custom Webhook request contract
FastHook can verify a generic HMAC-SHA256 signature over the raw request body, or use Basic Auth/API key checks before queueing.
FastHook headers
Preserve Authorization, Configured API key header, Configured signature header when sending FastHook 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.
AuthorizationUsed when Basic Auth is enabled.
Configured API key headerUsed when API key auth is enabled.
Configured signature headerUsed when generic HMAC auth is enabled.
FastHook setup
- Create a source, copy the generated Source URL, and point your sender at that URL.
- Keep the default methods for service-to-service traffic, or narrow them to the exact methods your sender uses.
- Choose Basic Auth, API key, or HMAC when the sender can attach a stable credential.
- For outbound webhook sending, let your application POST messages to this Source URL and route them to signed HTTP destinations through connections.