> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Tally

> Build and manage Tally forms, responses, analytics, workspaces, and signed form-response automations.

Use Tally to build forms, inspect submissions and analytics, manage workspaces and webhooks, and start automations when a form receives a response.

Connect Tally with an API key from [Tally API keys](https://tally.so/settings/api-keys). Tally API keys start with `tly-` and grant access to every resource available to their user, so protect them like passwords.

## Exports

```ts theme={null}
import { tally, tallyAccount } from "automate.ax/tally"
```

* `tally` contains all packaged Tally actions and triggers.
* `tallyAccount("name")` selects a named Tally API-key connection.

Automate.ax pins requests to Tally API version `2026-08-04`. Tally limits API keys to 100 requests per minute. Rate-limited actions retry after Tally's `Retry-After` delay when provided.

## Triggers

* [Form event](/reference/integrations/tally/triggers/on-form-event)
* [Form response](/reference/integrations/tally/triggers/on-form-response)

Automate.ax creates and signs the Tally webhook for each trigger. You do not need to create a webhook manually.

## Actions

* [Get current user](/reference/integrations/tally/actions/get-current-user)
* [List organization users](/reference/integrations/tally/actions/list-organization-users)
* [Remove organization user](/reference/integrations/tally/actions/remove-organization-user)
* [List organization invites](/reference/integrations/tally/actions/list-organization-invites)
* [Create organization invites](/reference/integrations/tally/actions/create-organization-invites)
* [Cancel organization invite](/reference/integrations/tally/actions/cancel-organization-invite)
* [List forms](/reference/integrations/tally/actions/list-forms)
* [Create form](/reference/integrations/tally/actions/create-form)
* [Get form](/reference/integrations/tally/actions/get-form)
* [Update form](/reference/integrations/tally/actions/update-form)
* [Delete form](/reference/integrations/tally/actions/delete-form)
* [List form questions](/reference/integrations/tally/actions/list-form-questions)
* [Update form blocks](/reference/integrations/tally/actions/update-form-blocks)
* [List form submissions](/reference/integrations/tally/actions/list-form-submissions)
* [Get form submission](/reference/integrations/tally/actions/get-form-submission)
* [Delete form submission](/reference/integrations/tally/actions/delete-form-submission)
* [Get form metrics](/reference/integrations/tally/actions/get-form-metrics)
* [Get form visits](/reference/integrations/tally/actions/get-form-visits)
* [Get form submission analytics](/reference/integrations/tally/actions/get-form-submission-analytics)
* [Get form dimensions](/reference/integrations/tally/actions/get-form-dimensions)
* [Get form drop-off](/reference/integrations/tally/actions/get-form-drop-off)
* [List workspaces](/reference/integrations/tally/actions/list-workspaces)
* [Create workspace](/reference/integrations/tally/actions/create-workspace)
* [Get workspace](/reference/integrations/tally/actions/get-workspace)
* [Update workspace](/reference/integrations/tally/actions/update-workspace)
* [Delete workspace](/reference/integrations/tally/actions/delete-workspace)
* [List folders](/reference/integrations/tally/actions/list-folders)
* [Create folder](/reference/integrations/tally/actions/create-folder)
* [Update folder](/reference/integrations/tally/actions/update-folder)
* [Delete folder](/reference/integrations/tally/actions/delete-folder)
* [List webhooks](/reference/integrations/tally/actions/list-webhooks)
* [Create webhook](/reference/integrations/tally/actions/create-webhook)
* [Update webhook](/reference/integrations/tally/actions/update-webhook)
* [Delete webhook](/reference/integrations/tally/actions/delete-webhook)
* [List webhook events](/reference/integrations/tally/actions/list-webhook-events)
* [Retry webhook event](/reference/integrations/tally/actions/retry-webhook-event)
