Manage Jotform forms, submissions, labels, and account settings. Create and clone forms, retrieve submission data, organize forms with labels, generate reports, and monitor account usage.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Jotform API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Jotform |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Jotform API │
│ (User Chat) │ │ (OAuth) │ │ (v2) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Jotform│ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Jotform │
│ File │ │ Auth │ │ Forms │
└──────────┘ └──────────┘ └──────────┘
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 Jotform again."
# List all forms
clawlink_call_tool --tool "jotform_get_user_forms" --params '{}'
# Get form submissions
clawlink_call_tool --tool "jotform_get_user_submissions" --params '{}'
# Get user account details
clawlink_call_tool --tool "jotform_get_user_details" --params '{}'
All Jotform tool calls are authenticated automatically by ClawLink using the user's connected Jotform account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Jotform API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for jotform in the list.
clawlink_list_tools --integration jotform
Response: Returns the live tool catalog for Jotform.
If Jotform tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration jotform| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
jotform_get_user_forms | List all forms created by the authenticated user | Read |
jotform_get_user_submissions | Get all submissions across all forms in the account | Read |
jotform_get_user_reports | List report URLs for all forms (Excel, CSV, charts, embeddable) | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
jotform_get_user_folders | List labels (folders replacement) for the authenticated user | Read |
jotform_get_label | Get details of a specific label by ID (name and color) | Read |
jotform_get_label_resources | Get forms assigned to a specific label | Read |
jotform_create_label | Create a new label for organizing forms | Write |
jotform_update_label | Update a label's name or color | Write |
jotform_delete_label | Delete a label and all its sublabels | Write |
jotform_remove_label_resources | Remove specific forms from a label | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
jotform_get_user_details | Get account details and usage info | Read |
jotform_get_user_settings | Get user settings including timezone, language, email | Read |
jotform_get_user_settings_by_key | Get a specific user setting by key | Read |
jotform_update_user_settings | Update user settings like timezone, language, email | Write |
jotform_get_user_history | Get user activity history records | Read |
jotform_get_user_usage | Get monthly usage statistics (submissions, SSL, storage) | Read |
jotform_get_system_plan | Get plan limits and pricing details | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
jotform_clone_form | Clone a complete form with all questions and settings | Write |
clawlink_call_tool --tool "jotform_get_user_forms" \
--params '{}'
clawlink_call_tool --tool "jotform_get_user_submissions" \
--params '{}'
clawlink_call_tool --tool "jotform_clone_form" \
--params '{"form_id": "FORM_ID"}'
clawlink_call_tool --tool "jotform_get_user_details" \
--params '{}'
clawlink_call_tool --tool "jotform_get_user_usage" \
--params '{}'
clawlink_list_integrations to confirm Jotform is connected.clawlink_list_tools --integration jotform to see the live catalog.clawlink_search_tools with a short query and integration jotform.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List forms → Get submissions → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Preview form clone → User approves → Execute │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration jotform. |
| Missing connection | Jotform is not connected. Direct the user to https://claw-link.dev/dashboard?add=jotform. |
| Permission error | The connected account lacks permission for this operation. |
| Form not found | The form ID does not exist. Verify with jotform_get_user_forms. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本