Source type

Typeform Source Configuration

Typeform sources receive form response webhooks and verify Typeform's signed webhook header.

TYPEFORMPOST, PUT, PATCH, DELETEWebhook Signing SecretProductivity
Typeform sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.TypeformProviderPOST, PUT, PATCH, DELETESignedFastHookSource URLTYPEFORMProvider credentialsignatureVerify before queue401 on auth failure405 on wrong methodAcceptedRequestverified: trueConnections route the accepted request to destinationsFilters, transformations, retries, replay, and destination signatures stay downstream from source verification.

Typeform configuration

Create a Typeform 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 Typeform delivery before it enters the routing workflow.

Source Type

TYPEFORM

Allowed methods

POST, PUT, PATCH, DELETE

Authentication

Provider signature

Credential fields

Webhook Signing Secret

Typeform source config
{
  "type": "TYPEFORM",
  "config": {
    "auth_type": "PROVIDER_SIGNATURE",
    "auth": {
      "provider": "TYPEFORM",
      "webhook_signing_secret": "provider-secret"
    },
    "allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
  }
}

Typeform request contract

FastHook computes base64 HMAC-SHA256 over the raw body and compares it to typeform-signature with the sha256= prefix.

POSTPUTPATCHDELETE

Typeform headers

Preserve typeform-signature when sending Typeform 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.

typeform-signature

sha256= base64 HMAC-SHA256 signature over the raw body.

Typeform setup

  1. Create a Typeform webhook and paste the FastHook Source URL.
  2. Use the Typeform webhook secret as the FastHook Webhook Signing Secret.
  3. Route by form_response fields or form id when one source handles several forms.

Continue with Typeform