clickup-common-errors

Featured

Diagnose and fix ClickUp API v2 errors by HTTP status and error code. Use when encountering ClickUp API errors, debugging failed requests, or troubleshooting OAUTH_* error codes, 401s, 429s, and 500s. Trigger: "clickup error", "fix clickup", "clickup not working", "clickup 401", "clickup 429", "OAUTH error", "debug clickup API".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# ClickUp Common Errors ## Overview Reference for ClickUp API v2 errors. All errors return JSON with `err` (message) and optionally `ECODE` (error code). ## Error Response Format ```json { "err": "Space not found", "ECODE": "ITEM_015" } ``` ## HTTP Status Errors ### 400 Bad Request | Situation | Response | Fix | |-----------|----------|-----| | Missing required field | `{"err": "Task name required"}` | Include `name` in request body | | Invalid field value | `{"err": "Invalid priority"}` | Priority must be 1-4 or null | | Malformed JSON | `{"err": "Unexpected token"}` | Validate JSON before sending | | Invalid custom field value | `{"err": "Invalid value for field"}` | Match value to field type | ### 401 Unauthorized — OAuth Errors | ECODE | Cause | Solution | |-------|-------|----------| | OAUTH_017 | Token malformed or missing | Include `Authorization: <token>` header | | OAUTH_023 | Workspace not authorized for token | User must re-authorize workspace in OAuth flow | | OAUTH_026 | Token revoked by user | Generate new personal token or re-authenticate | | OAUTH_027 | Workspace not authorized | Re-authorize via OAuth, ensuring workspace scope | | OAUTH_029-045 | Various workspace auth failures | Re-run OAuth flow for the specific workspace | ```bash # Diagnose: verify your token works curl -s -w "\nHTTP %{http_code}\n" \ https://api.clickup.com/api/v2/user \ -H "Authorization: $CLICKUP_API_TOKEN" ``` ### 403 Forbidden | Situation | Fix | |-----------|----...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category