Skip to content

Webhook scenarios

Common ways to use Tallyfy webhooks

Tallyfy’s webhooks automatically send data to external systems when specific events happen in your workflows. Three main events can trigger a webhook:

Trigger: process launched

Set up a webhook at the template level. It fires immediately when someone launches a new process from that template - even before any tasks are done.

  • Use case: Track new process starts in real time (e.g., log every new client onboarding in a spreadsheet or database).

Trigger: task completed

Set up a webhook on a specific step within a template. It fires only when that particular task is completed.

  • Use case: Trigger follow-up actions in other systems when a key milestone is reached (e.g., when “Contract Signed” is completed, send data to your finance system).

Trigger: process completed

A template-level webhook also fires when all tasks in a process are completed. This lets you trigger external actions when an entire workflow finishes - not just individual tasks.

  • Use case: Mark a deal as “closed” in your CRM or archive records when a full process wraps up.

Video examples

These videos show practical ways to use webhooks, often with a middleware tool like Zapier:

  • Send task data to a spreadsheet Shows how to automatically add form answers from a Tallyfy task to rows in a spreadsheet.

  • Start a new process when a task finishes Shows how completing one task in Tallyfy can automatically launch a different process.

  • Send form data from multiple steps Shows sending data collected across several steps to another service.

  • Send an email when a task finishes Shows how to trigger a custom email notification upon task completion.

Webhook payload data

Webhooks send detailed JSON data. You can see an example of the structure here:

Webhook-Sample.json

Webhook payload structure

The JSON payload contains detailed event information. Key sections for task completion webhooks include:

  • this_task: The task that triggered the webhook - includes id, title, alias, status, summary, deadline, position, captures (form field values), owners (assigned users and guests), completed_at, completed_by, and assets (attached files with download links).
  • next_task: The first incomplete task that isn’t auto-skipped, ordered by position. Includes the same fields as this_task (minus assets). Returns an empty object if all tasks are done.
  • process: The overall process instance - includes id, organization_id, name, summary, status, progress, created_at, ClientURL, prerun (kick-off form values), process_forms (all form field values across all tasks), and tags.
  • template: The source template - includes id, title, alias, and summary.
  • form-fields: A flat map of all form field values across all tasks and the kick-off form, keyed by alias.
  • process-tasks: A map of task aliases to task IDs for the entire process.
  • guest-links: URLs for each guest assignee to access their tasks.
  • launcher and completer: Info about who launched the process and who completed the task.

For process launch/completion webhooks, the payload includes process data, process-tasks, ko-form-fields (kick-off values), guest-links, and launcher.

Refer to the sample JSON file linked above for the full structure.

Date formats

Tallyfy lets you choose between two date formats for webhook data. You select this in your organization settings:

  • ISO format (default): yyyy-MM-ddTHH:mm:ssZ
  • Human-readable format: d/m/Y h:i A T - dates are converted to your organization’s timezone
Date format human-readableDate format ISO

Security header

Tallyfy webhooks include an X-Tallyfy-orgID header containing your unique organization ID. Your receiving system can check this header to validate that the request genuinely came from your Tallyfy account.

X-Tallyfy-OrgID header

Handling duplicate events

Webhooks > Details about webhooks

Tallyfy webhooks send JSON data to external URLs when workflow events occur - at template level (any step completion or process launch/completion) or step level (specific task completions) - with an organization ID header for security validation.

Integrations > Webhooks

Tallyfy webhooks automatically send JSON data to external systems when workflow events occur enabling instant integration with middleware platforms custom APIs and serverless functions without requiring constant polling.

Webhooks > Send emails using webhooks

Tallyfy webhooks can trigger custom email notifications through middleware tools like Zapier, Make, or Power Automate when tasks are completed or processes are launched.

Webhooks > Webhook payload structure

Tallyfy webhooks deliver JSON payloads with different structures for process-level events (launches and completions) and task-level events (task completions) containing workflow data, form fields, guest access links, and task assignment info for real-time integration with external systems.