← 返回
未分类 中文

Freshservice

Manage Freshservice tickets, requesters, agents, assets, changes, problems, and service catalog data via the Freshservice API. Use this skill when users want...
通过 Freshservice API 管理工单、请求者、代理、资产、变更、问题及服务目录数据。当用户需要...时使用此技能。
hith3sh hith3sh 来源
未分类 clawhub v1.0.2 2 版本 99872.6 Key: 无需
★ 6
Stars
📥 1,448
下载
💾 1
安装
2
版本
#clawlink#integration#latest

概述

Freshservice

!Freshservice

Access Freshservice via the Freshservice API with API key authentication. Manage tickets, requesters, agents, assets, changes, problems, and service catalog data.

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

Setup in 3 Steps

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

How It Works

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

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 Freshservice again."

Quick Start

# List all tickets
clawlink_call_tool --tool "freshservice_list_tickets" --params '{}'

# Get a specific ticket
clawlink_call_tool --tool "freshservice_get_ticket" --params '{"ticket_id": 12345}'

# List requesters
clawlink_call_tool --tool "freshservice_list_requesters" --params '{}'

Authentication

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

No API key is required in chat. ClawLink stores credentials securely and injects them into every Freshservice 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=freshservice and connect Freshservice.
  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 freshservice in the list.

Verify Connection

clawlink_list_tools --integration freshservice

Response: Returns the live tool catalog for Freshservice.

Reconnect

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

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

Security & Permissions

  • Access is scoped to tickets, assets, and resources accessible to the connected Freshservice account.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (deleting tickets, assets, or releasing changes) are marked as high-impact and must be confirmed.
  • IT service management operations depend on agent permissions.

Tool Reference

Tickets

ToolDescriptionMode
-------------------------
freshservice_list_ticketsList tickets with filtering and paginationRead
freshservice_get_ticketGet ticket details by IDRead
freshservice_create_ticketCreate a new service ticketWrite
freshservice_update_ticketUpdate ticket fieldsWrite
freshservice_delete_ticketDelete a ticketWrite

Requesters & Users

ToolDescriptionMode
-------------------------
freshservice_list_requestersList all requesters in the accountRead
freshservice_get_requesterGet requester details by IDRead
freshservice_list_agentsList all agentsRead
freshservice_get_agentGet agent detailsRead

Assets

ToolDescriptionMode
-------------------------
freshservice_list_assetsList all assetsRead
freshservice_get_assetGet asset detailsRead

Locations

ToolDescriptionMode
-------------------------
freshservice_list_locationsList all locationsRead

Problems & Changes

ToolDescriptionMode
-------------------------
freshservice_list_problemsList all problemsRead
freshservice_get_problemGet problem detailsRead
freshservice_list_changesList all changesRead
freshservice_get_changeGet change detailsRead

Service Catalog

ToolDescriptionMode
-------------------------
freshservice_list_service_catalog_itemsList service catalog itemsRead
freshservice_get_service_catalog_itemGet catalog item detailsRead

Code Examples

List all open tickets

clawlink_call_tool --tool "freshservice_list_tickets" \
  --params '{
    "filter": "open"
  }'

Create a new ticket

clawlink_call_tool --tool "freshservice_create_ticket" \
  --params '{
    "subject": "Laptop not working",
    "description": "User reports laptop is not turning on",
    "email": "user@example.com",
    "priority": 2,
    "status": 2
  }'

Get requester details

clawlink_call_tool --tool "freshservice_get_requester" \
  --params '{
    "requester_id": 12345
  }'

List assets

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

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Freshservice is connected.
  2. Call clawlink_list_tools --integration freshservice 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 freshservice.
  5. If no Freshservice tools appear, direct the user to https://claw-link.dev/dashboard?add=freshservice.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: List tickets → Get ticket → Show details          │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  list → get → describe → preview → confirm → call           │
│                                                             │
│  Example: Describe tool → Preview ticket → User approves    │
│           → Execute 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, search, 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

  • Ticket IDs and requester IDs are required for ticket and user-specific operations.
  • Freshservice uses different status and priority values than Freshdesk — verify the expected values in the tool schema.
  • Service catalog availability depends on the Freshservice plan and configuration.
  • Asset management requires appropriate IT admin permissions.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration freshservice.
Missing connectionFreshservice is not connected. Direct the user to https://claw-link.dev/dashboard?add=freshservice.
404 Not FoundTicket or resource does not exist. Verify the ID.
403 ForbiddenInsufficient permissions for the requested 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.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly freshservice.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.2 当前
    2026-06-09 16:16 安全 安全
  • v0.1.0
    2026-05-21 13:56 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

dev-programming

GitHub

hith3sh
通过 GitHub REST 和GraphQL API 与仓库、议题、拉取请求、提交、分支、发布和工作流进行交互。在需要时使用此技能。
★ 6 📥 1,950
it-ops-security

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 90 📥 30,899
it-ops-security

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,882