Logo

Typeform

Run a workflow when someone submits a Typeform — route the lead, score the feedback, kick off follow-up. The form response becomes the workflow's input.

For behavior shared by every provider (the delivery URL, testing), see the webhook triggers reference.

Prerequisites

Typeform webhooks are auto-registered: Cotera creates the webhook for you over Typeform's API, using a connected Typeform access token. Without one, install fails with typeform_credentials_missing.

Setup

  1. Add a From an app trigger and pick Typeform.
  2. Set the form ID of the form whose responses you want.
  3. Save. Cotera registers a webhook on that form, pointed at the trigger's unique URL.

Deleting the trigger removes the webhook from the form. A trigger is identified by its form, so two triggers on different forms stay distinct.

Events

Event keyFires whenConfig
form_responseA respondent submits the formformId (required)

Payload

The Typeform response payload is passed through as the workflow input:

{
  "event_id": "01F1EXAMPLE",
  "event_type": "form_response",
  "form_response": {
    "form_id": "abc123",
    "token": "tok_EXAMPLE",
    "submitted_at": "2023-07-15T10:30:00Z",
    "definition": {
      "id": "abc123",
      "title": "Customer feedback",
      "fields": [{ "id": "q1", "title": "How satisfied are you?", "type": "rating" }]
    },
    "answers": [{ "field": { "id": "q1", "type": "rating" }, "type": "number", "number": 5 }]
  }
}
FieldDescription
event_idThe event's unique id, used to deduplicate retries.
event_typeThe event type — form_response.
form_response.form_idThe form the response belongs to.
form_response.token / submitted_atThe response's unique token and submission time.
form_response.definitionThe form definition — its title and field list.
form_response.answersThe submitted answers, each tying a field to a typed value.

Signature verification

Typeform signs each delivery with the Typeform-Signature header in the form sha256=<base64> — a base64 HMAC-SHA256 of the raw request body. The signing secret is the one Cotera set when it created the webhook, so there's no per-trigger secret for you to manage. Cotera verifies it on every delivery and rejects anything that fails.