← 返回
未分类 中文

Tally

Manage Tally forms, submissions, respondents, fields, and form workflow data via the Tally API. Use this skill when users want to list forms, inspect submiss...
通过 Tally API 管理表单、提交、回复者、字段和工作流数据,适用于列出表单、检查提交等需求。
hith3sh hith3sh 来源
未分类 clawhub v1.0.1 2 版本 100000 Key: 无需
★ 0
Stars
📥 39
下载
💾 0
安装
2
版本
#latest

概述

Tally

!Tally

Manage Tally forms, submissions, respondents, fields, and form workflows from chat via the Tally API.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Tally API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Tally
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Tally

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│   Tally API      │
│   (User Chat)   │     │   (OAuth)    │     │                  │
└─────────────────┘     └──────────────┘     └──────────────────┘
         │                       │                       │
         │  1. Install Plugin    │                       │
         │  2. Pair Device       │                       │
         │  3. Connect Tally     │                       │
         │                       │  4. Secure Token      │
         │                       │  5. Proxy Requests    │
         │                       │                       │
         ▼                       ▼                       ▼
   ┌──────────┐           ┌──────────┐           ┌──────────┐
   │  SKILL   │           │ Dashboard│           │  Tally   │
   │  File    │           │ Auth     │           │  Account │
   └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Tally again."

Quick Start

# List all forms
clawlink_call_tool --tool "tally_list_forms" --params '{}'

# Get form details
clawlink_call_tool --tool "tally_get_form" --params '{"form_id": "FORM_ID"}'

# List submissions for a form
clawlink_call_tool --tool "tally_list_submissions" --params '{"form_id": "FORM_ID"}'

Authentication

All Tally tool calls are authenticated automatically by ClawLink using the user's connected Tally account OAuth token.

No API token is required in chat. ClawLink stores the OAuth token securely and injects it into every Tally API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=tally and connect Tally.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for tally in the list.

Verify Connection

clawlink_list_tools --integration tally

Response: Returns the live tool catalog for Tally.

Reconnect

If Tally tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=tally
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration tally

Security & Permissions

  • Access is scoped to forms and data accessible to the connected Tally account.
  • Write operations (create form, delete submission) require explicit user confirmation.
  • Submission data may contain personal information — handle in accordance with privacy best practices.
  • Confirm before making bulk changes to form settings or deleting submissions.

Tool Reference

Forms

ToolDescriptionMode
-------------------------
tally_list_formsList all forms accessible to the accountRead
tally_get_formGet form details including fields and settingsRead
tally_create_formCreate a new formWrite
tally_update_formUpdate a form's name, fields, or settingsWrite
tally_delete_formPermanently delete a formWrite
tally_duplicate_formDuplicate an existing formWrite
tally_archive_formArchive a formWrite
tally_unarchive_formUnarchive a formWrite

Submissions

ToolDescriptionMode
-------------------------
tally_list_submissionsList submissions for a form with paginationRead
tally_get_submissionGet a specific submission with all field valuesRead
tally_delete_submissionPermanently delete a submissionWrite
tally_mark_submission_as_readMark a submission as readWrite
tally_mark_submission_as_unreadMark a submission as unreadWrite
tally_get_submission_countGet the number of submissions for a formRead

Respondents

ToolDescriptionMode
-------------------------
tally_list_respondentsList all respondents to a formRead
tally_get_respondentGet a specific respondent's informationRead

Fields

ToolDescriptionMode
-------------------------
tally_list_fieldsList all fields for a formRead
tally_create_fieldAdd a new field to a formWrite
tally_update_fieldUpdate a field's label, options, or settingsWrite
tally_delete_fieldRemove a field from a formWrite

Form Workflows

ToolDescriptionMode
-------------------------
tally_submit_formSubmit a response to a formWrite
tally_get_form_workflowGet the workflow settings for a formRead
tally_update_form_workflowUpdate form workflow settingsWrite

Notifications

ToolDescriptionMode
-------------------------
tally_list_notificationsList notification settings for a formRead
tally_create_notificationCreate a new notification ruleWrite
tally_update_notificationUpdate notification settingsWrite
tally_delete_notificationRemove a notification ruleWrite

Code Examples

List all forms

clawlink_call_tool --tool "tally_list_forms" \
  --params '{}'

Get form with fields

clawlink_call_tool --tool "tally_get_form" \
  --params '{
    "form_id": "FORM_ID"
  }'

List submissions for a form

clawlink_call_tool --tool "tally_list_submissions" \
  --params '{
    "form_id": "FORM_ID",
    "limit": 20
  }'

Get a specific submission

clawlink_call_tool --tool "tally_get_submission" \
  --params '{
    "form_id": "FORM_ID",
    "submission_id": "SUBMISSION_ID"
  }'

Submit a form response

clawlink_call_tool --tool "tally_submit_form" \
  --params '{
    "form_id": "FORM_ID",
    "fields": {
      "EMAIL": "respondent@example.com",
      "MESSAGE": "This is my response"
    }
  }'

Get respondent list

clawlink_call_tool --tool "tally_list_respondents" \
  --params '{
    "form_id": "FORM_ID",
    "limit": 50
  }'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Tally is connected.
  2. Call clawlink_list_tools --integration tally to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration tally.
  5. If no Tally tools appear, direct the user to https://claw-link.dev/dashboard?add=tally.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → describe                                      │
│                                                             │
│  Example: List forms → Get submissions → Review responses  │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  describe → preview → confirm → call                        │
│                                                             │
│  Example: Preview form creation → User approves → Create    │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • Form IDs are required for most operations — use tally_list_forms to discover form IDs.
  • Submissions contain field values mapped by field ID (not field label).
  • Deleted forms and submissions cannot be recovered — always confirm before deleting.
  • Field IDs in submissions match the internal field identifiers, not visible labels.
  • Tally's API is read-focused for submissions — form creation and modification capabilities vary by plan.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration tally.
Missing connectionTally is not connected. Direct the user to https://claw-link.dev/dashboard?add=tally.
Form not foundThe form ID does not exist or is not accessible.
Submission not foundThe submission ID does not exist for this form.
Field not foundThe field ID does not exist in the form.
Not authorizedThe connected account lacks access to this form or operation.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Resources

  • Tally API Documentation
  • Tally Developer Docs
  • ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=tally-forms
  • ClawLink Docs: https://docs.claw-link.dev/openclaw
  • ClawLink Verification: https://claw-link.dev/verify

Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.1 当前
    2026-06-11 18:58
  • v1.0.0
    2026-06-09 19:51

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

business-ops

Trello

steipete
使用 Trello REST API 管理看板、列表和卡片
★ 162 📥 41,361
business-ops

Calendar

ndcccccc
日历管理与日程安排。创建事件、管理会议,并实现多日历平台同步。
★ 7 📥 23,269
office-efficiency

Microsoft Excel

hith3sh
通过托管 OAuth 集成 Microsoft Excel API,实现对 OneDrive 中 Excel 工作簿、工作表、区域、表格和图表的读写。使用此技能...
★ 32 📥 1,983