Skip to content

n8n actions and triggers

The Tallyfy community node for n8n (n8n-nodes-tallyfy) already had the broadest coverage of any Tallyfy connector, and it grew again. It went from 55 operations to 96, covering the same ten action categories as Tallyfy’s other connectors, and it gained something it never had before: a Tallyfy Trigger node that runs in two modes, polling and instant webhooks.

CategoryWhat you can do
Users and guestsInvite members, read and list users, change roles, enable or disable accounts, read your organization’s details, create, update, and delete guests, and convert members to guests (or back)
GroupsCreate, read, update, and delete groups
TasksCreate standalone tasks, complete tasks (including approvals), update, reopen, clone, and delete tasks; list your tasks, another member’s, a guest’s, or a process’s tasks
ProcessesLaunch a process from a template, read, update, archive, reactivate, and list processes; submit or reopen a kickoff form
TemplatesRead, list, create, clone, update, and delete templates; list a template’s steps and read its kickoff form fields
Form fieldsSet form field values on tasks; add, update, move, and delete step form fields; manage dropdown options; add, update, delete, and reorder kickoff fields
Comments and issuesAdd comments (including bot comments that skip notifications), edit or delete them, list a task’s comments, report an issue on a task, and resolve an issue
TagsList, create, update, and delete tags; tag or untag templates and processes
FoldersList, create, update, and delete folders; move templates and processes in and out
SearchKeyword search across tasks, processes, templates, snippets, or everything at once; six ID Finder lookups turn a name into the ID you need

In total the node now ships 96 operations across 12 resources, up from 55. In the node’s Resource dropdown you’ll see Blueprint, Process, Task, Form Field, Comment, User, Guest, Group, Tag, Folder, Search, and ID Finder.

The Tallyfy Trigger node runs in two modes, chosen with the Mode dropdown when you add it: Polling (works everywhere today) and Instant (Webhook) (real time, covered below). In Polling mode it checks Tallyfy on the schedule you set, picks up new items, and de-duplicates by record id so nothing repeats. The four polling triggers:

  1. New process launched - a process starts, optionally scoped to one template.
  2. Task completed - a task is marked complete.
  3. Task assigned to you (new task) - a new task lands in your queue.
  4. Comment or issue added - a comment or reported issue appears on a watched process (a single process, or every process from one template).

Set the poll frequency on the trigger node’s schedule. More frequent polling means fresher data and more API calls. The first poll after you activate a workflow takes a snapshot, so the trigger only fires for items that show up after that. It won’t replay your history.

Switch the node’s Mode to Instant (Webhook) and Tallyfy pushes events to n8n the moment they happen, so the workflow runs in real time instead of on the next poll. One node covers seven events, and you tick the ones you want in the Events list:

  1. Process launched (process.launched) - a process is launched from a template.
  2. Process completed (process.completed) - a whole process reaches completed status.
  3. Task completed (task.completed) - a task is marked complete.
  4. Task assigned (task.assigned) - a task is assigned to someone.
  5. Comment added (task.comment_added) - a comment is posted on a task.
  6. Issue raised (task.issue_raised) - an issue is reported on a task.
  7. Issue resolved (task.issue_resolved) - a reported issue is resolved.

When you activate the workflow, the node registers one organization-wide webhook with Tallyfy and removes it when you deactivate. Tallyfy then posts every selected event to that single webhook.

n8n connects to Tallyfy with a Tallyfy API credential that holds two required values: your personal access token and your Organization ID. Get the token from Settings > Integrations > REST API in Tallyfy; your Organization ID is in your Tallyfy URL. A third field, the API base URL, comes pre-filled, so you can leave it alone.

The token acts on behalf of the user who created it. Use a token from an account with the right permissions for what your workflows do. The credential also has a built-in test that checks the token against your own Tallyfy profile, so you’ll know it works before you build anything.

  1. Install the Tallyfy community node - on a self-hosted instance, run npm install n8n-nodes-tallyfy.
  2. In n8n, create a Tallyfy API credential with your access token and Organization ID, then run the credential test.
  3. Add a Tallyfy node to a workflow, pick a resource and operation, for example Process > Launch, and map the input fields.
  4. To react to Tallyfy events, add a Tallyfy Trigger node, choose one of the four triggers, and set its poll schedule.
  5. Test with sample data, then activate the workflow.

Remember the naming: “templates” in the Tallyfy UI show up as Blueprints in the node (the API also calls them “checklists”), and “processes” are “runs”. The full setup walkthrough, including the HTTP Request alternative, is in Connecting n8n.

If building workflows by hand is more than you need, the Tallyfy MCP server lets an AI assistant call these same actions in plain English. See the MCP server guide.

N8N > Connecting n8n

n8n connects to Tallyfy in about five minutes using either a community-built Tallyfy node or…

Middleware > n8n

n8n is a developer-friendly automation platform with a dedicated Tallyfy connector. It offers 96…