← 返回
开发者工具 Key 中文

Zendesk

Manage Zendesk tickets, users, and support workflows with API integration and automation.
通过API集成和自动化管理Zendesk工单、用户和支持工作流。
ivangdavila ivangdavila 来源
开发者工具 clawhub v1.0.0 1 版本 99900.1 Key: 需要
★ 1
Stars
📥 980
下载
💾 8
安装
1
版本
#latest

概述

Setup

On first use, read setup.md for API credentials and workspace integration.

When to Use

User needs to interact with Zendesk: create or update tickets, search support history, check user details, or automate support workflows. Agent handles API operations, ticket management, and reporting.

Architecture

Memory at ~/zendesk/. See memory-template.md for structure.

~/zendesk/
├── memory.md        # Credentials + preferences + recent context
├── templates/       # Saved ticket templates and macros
└── exports/         # Report exports and ticket dumps

Quick Reference

TopicFile
-------------
Setup processsetup.md
Memory templatememory-template.md
API operationsapi-reference.md
Common issuestroubleshooting.md

Core Rules

1. Authenticate Before Operations

Credentials from environment variables (ZENDESK_SUBDOMAIN, ZENDESK_EMAIL, ZENDESK_TOKEN) or ~/zendesk/memory.md.

# Test auth
curl -u "$ZENDESK_EMAIL/token:$ZENDESK_TOKEN" "https://$ZENDESK_SUBDOMAIN.zendesk.com/api/v2/users/me.json"

2. Search Before Create

Always search existing tickets before creating new ones to avoid duplicates.

curl -u "$AUTH" "$BASE/search.json?query=type:ticket+subject:issue"

3. Use Views for Efficiency

Don't list all tickets. Use views to get relevant subsets.

ViewUse Case
----------------
/views/activeGet available views
/views/{id}/ticketsTickets in specific view
/tickets/recentRecently updated

4. Preserve Ticket History

When updating, add internal notes explaining changes. Never delete ticket data.

5. Rate Limits

Zendesk limits: 700 requests/minute (Enterprise), 200/minute (others). Add delays for bulk operations.

6. Always Confirm Destructive Actions

Before closing, merging, or deleting tickets, confirm with user and summarize what will happen.

Common Operations

Set auth: AUTH="$ZENDESK_EMAIL/token:$ZENDESK_TOKEN" and BASE="https://$ZENDESK_SUBDOMAIN.zendesk.com/api/v2"

Create Ticket

curl -X POST "$BASE/tickets.json" -u "$AUTH" -H "Content-Type: application/json" \
  -d '{"ticket":{"subject":"Issue","comment":{"body":"Description"},"priority":"normal"}}'

Update Ticket Status

curl -X PUT "$BASE/tickets/$ID.json" -u "$AUTH" -H "Content-Type: application/json" \
  -d '{"ticket":{"status":"solved","comment":{"body":"Resolution","public":false}}}'

Search Tickets

curl -u "$AUTH" "$BASE/search.json?query=type:ticket+status:open+priority:urgent"

Get User Details

curl -u "$AUTH" "$BASE/users/search.json?query=email:user@example.com"

Ticket Statuses

StatusMeaningNext Actions
-------------------------------
newUnassignedAssign, respond
openBeing workedUpdate, solve
pendingWaiting on customerFollow up, solve
holdWaiting internallyUnhold, update
solvedResolution providedClose (auto after 4 days)
closedFinalReopen creates new ticket

Priorities

PrioritySLA TargetUse For
------------------------------
urgent1 hourSystem down, revenue impact
high4 hoursMajor feature broken
normal8 hoursStandard issues
low24 hoursQuestions, minor bugs

Common Traps

  • Auth format wrong → Must be email/token:API_TOKEN, not just token
  • Searching with special chars → URL-encode queries
  • Bulk updates failing → Check rate limits, add 100ms delay
  • Missing ticket fields → Some fields require specific plans
  • Pagination ignored → Results capped at 100, use next_page URL

External Endpoints

EndpointData SentPurpose
------------------------------
https://{subdomain}.zendesk.com/api/v2/*Ticket/user dataAll operations

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • Ticket content sent to Zendesk API
  • Search queries sent to Zendesk

Data that stays local:

  • API credentials in ~/zendesk/memory.md
  • Exported reports in ~/zendesk/exports/

This skill does NOT:

  • Store credentials in plain text outside ~/zendesk/
  • Send data to any service other than Zendesk
  • Access tickets without explicit user request

Trust

By using this skill, ticket and user data is sent to Zendesk's API.

Only install if you have authorized Zendesk API access.

Related Skills

Install with clawhub install if user confirms:

  • api - REST API patterns
  • customer-support - Support best practices
  • csv - Export and analyze ticket data

Feedback

  • If useful: clawhub star zendesk
  • Stay updated: clawhub sync

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 16:10 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

office-efficiency

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 451 📥 150,293
business-ops

Trello

steipete
使用 Trello REST API 管理看板、列表和卡片
★ 161 📥 41,112
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,385 📥 321,022