clari-common-errors

Featured

Diagnose and fix Clari API errors including auth failures, export issues, and data mismatches. Use when Clari API calls fail, exports return empty data, or forecast numbers do not match the UI. Trigger with phrases like "clari error", "clari not working", "clari api failure", "fix clari", "debug clari".

AI & Automation 2,266 stars 315 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

# Clari Common Errors ## Overview Diagnostic guide for the most common Clari API issues: authentication failures, empty exports, job timeouts, and data discrepancies. ## Error Reference ### 1. 401 Unauthorized ``` {"error": "Unauthorized", "message": "Invalid API key"} ``` **Fix**: Regenerate token at Clari > User Settings > API Token. Tokens may expire or be revoked by admins. ### 2. 403 Forbidden -- API Access Not Enabled ``` {"error": "Forbidden", "message": "API access not enabled for this user"} ``` **Fix**: Contact your Clari admin to enable API access. Requires enterprise plan. ### 3. 404 Forecast Not Found ``` {"error": "Not Found", "message": "Forecast 'wrong_name' not found"} ``` **Fix**: List available forecasts first: ```bash curl -s -H "apikey: ${CLARI_API_KEY}" \ https://api.clari.com/v4/export/forecast/list | jq '.forecasts[].forecastName' ``` ### 4. Export Returns Empty Entries The API returns `{"entries": []}` with no error. **Causes:** - Time period has no submitted forecasts - User lacks visibility into the forecast hierarchy - Wrong forecast name (case-sensitive) **Fix**: Verify in Clari UI that the forecast has submissions for the requested period. ### 5. Job Stuck in PENDING Export job never reaches COMPLETED status. **Causes:** - Very large export (all reps, all periods) - Clari backend queue congestion **Fix**: Increase polling timeout. Break large exports into per-period batches. ### 6. Data Mismatch Between API and UI Forecast numbers ...

Details

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

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clari-install-auth

Configure Clari API authentication with API key and set up export access. Use when connecting to the Clari API, generating API tokens, or configuring forecast data exports. Trigger with phrases like "install clari", "setup clari api", "clari auth", "clari api key", "configure clari".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-hello-world

Export your first Clari forecast and pipeline snapshot. Use when testing Clari API connectivity, pulling forecast data, or learning the export API structure. Trigger with phrases like "clari hello world", "clari first export", "clari test api", "clari forecast export".

2,266 Updated today
jeremylongshore
AI & Automation Solid

clari-security-basics

Secure Clari API tokens and implement data handling best practices. Use when managing API tokens, restricting data access, or implementing PII handling for exported forecast data. Trigger with phrases like "clari security", "clari api key rotation", "secure clari", "clari pii handling".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-prod-checklist

Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like "clari production", "clari go-live", "clari checklist", "clari launch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-rate-limits

Handle Clari API rate limits with backoff and export job scheduling. Use when hitting 429 errors, optimizing export frequency, or scheduling bulk forecast exports. Trigger with phrases like "clari rate limit", "clari 429", "clari throttle", "clari api limits".

2,266 Updated today
jeremylongshore