Access Freshdesk via the Freshdesk API with API key authentication. Manage tickets, notes, watchers, conversations, and support workflows.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Freshdesk API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Freshdesk |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Freshdesk |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Freshdesk API │
│ (User Chat) │ │ (OAuth) │ │ (REST) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Freshdesk │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Freshdesk│
│ File │ │ Auth │ │ Tickets │
└──────────┘ └──────────┘ └──────────┘
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 Freshdesk again."
# List all tickets
clawlink_call_tool --tool "freshdesk_list_tickets" --params '{}'
# Get a specific ticket
clawlink_call_tool --tool "freshdesk_get_ticket" --params '{"ticket_id": 12345}'
# Add a note to a ticket
clawlink_call_tool --tool "freshdesk_add_note_to_ticket" --params '{"ticket_id": 12345, "body": "Internal note content", "private": true}'
All Freshdesk tool calls are authenticated automatically by ClawLink using the user's connected Freshdesk account.
No API key is required in chat. ClawLink stores credentials securely and injects them into every Freshdesk 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 freshdesk in the list.
clawlink_list_tools --integration freshdesk
Response: Returns the live tool catalog for Freshdesk.
If Freshdesk tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration freshdesk| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
freshdesk_list_tickets | List tickets with filtering options (status, priority, type) | Read |
freshdesk_get_ticket | Get ticket details including description, requester, and assignments | Read |
freshdesk_create_ticket | Create a new support ticket | Write |
freshdesk_update_ticket | Update ticket fields (status, priority, assignee, etc.) | Write |
freshdesk_delete_ticket | Delete a ticket permanently | Write |
freshdesk_add_note_to_ticket | Add a private or public note to a ticket | Write |
freshdesk_reply_ticket | Reply to a ticket conversation | Write |
freshdesk_add_watcher | Add the authenticated user as a ticket watcher | Write |
freshdesk_bulk_unwatch_tickets | Remove watcher status from multiple tickets | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
freshdesk_list_ticket_conversations | Get all conversations on a ticket (notes, replies, forwards) | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
freshdesk_list_agents | List all agents in the Freshdesk account | Read |
freshdesk_get_agent | Get details for a specific agent | Read |
freshdesk_list_groups | List all support groups | Read |
freshdesk_add_ticket_user_access | Grant agent access to a specific ticket | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
freshdesk_list_companies | List all companies in the account | Read |
freshdesk_get_company | Get details for a specific company | Read |
clawlink_call_tool --tool "freshdesk_list_tickets" \
--params '{
"filter": "open"
}'
clawlink_call_tool --tool "freshdesk_add_note_to_ticket" \
--params '{
"ticket_id": 12345,
"body": "Customer called back. Issue resolved via phone call. Closing ticket.",
"private": true
}'
clawlink_call_tool --tool "freshdesk_reply_ticket" \
--params '{
"ticket_id": 12345,
"body": "Thank you for reaching out. Our team is investigating this issue and will update you within 24 hours.",
"incoming": false
}'
clawlink_call_tool --tool "freshdesk_update_ticket" \
--params '{
"ticket_id": 12345,
"priority": 4,
"status": 2
}'
clawlink_list_integrations to confirm Freshdesk is connected.clawlink_list_tools --integration freshdesk to see the live catalog.clawlink_search_tools with a short query and integration freshdesk.┌─────────────────────────────────────────────────────────────┐
│ 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 note → User approves │
│ → Execute add note │
└─────────────────────────────────────────────────────────────┘
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.freshdesk_list_tickets to find ticket IDs.freshdesk_reply_ticket are always public and visible to the customer.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration freshdesk. |
| Missing connection | Freshdesk is not connected. Direct the user to https://claw-link.dev/dashboard?add=freshdesk. |
404 Not Found | Ticket or resource does not exist. Verify the ticket ID. |
403 Forbidden | Insufficient permissions. Agent may not have access to this ticket. |
| 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.freshdesk.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本