Troubleshooting
This page covers common issues and their solutions.
Token Errors
Problem: Token not found
Error message: Token error
Solution: Authenticate using the login command (recommended):
quickup login
Alternatively, set your ClickUp API token manually:
export CLICKUP_TOKEN=your_token_here
Or create a .env file:
CLICKUP_TOKEN=your_token_here
Verify the environment token is loaded:
echo $CLICKUP_TOKEN
Team Errors
Problem: Team not found or ambiguous team
Exit code: 2
Solution: Specify the team ID explicitly:
quickup --team <team_id> --list <list_id>
Or use interactive mode to select a team:
quickup -i
List Errors
Problem: List not found
Exit code: 3
Solution: Verify the list ID is correct and exists in the specified space/project:
quickup --team <team_id> --space <space_id> --list <list_id>
Network Errors
Problem: Network error
Exit code: 4
Solution:
Check your internet connection
Verify the ClickUp API is accessible
Try again with
--no-cacheto bypass cached data
API Errors
Problem: API error
Exit code: 5
Solution:
Verify your API token is valid
Check ClickUp API status
Ensure you have proper permissions for the requested resources
Cache Issues
Problem: Stale data
Solution: Use --no-cache to fetch fresh data:
quickup --team <team_id> --list <list_id> --no-cache
Problem: Cache directory permission errors
Solution: Check permissions on ~/.quickup/cache/:
chmod 755 ~/.quickup/cache
Exit Codes Reference
Code |
Meaning |
|---|---|
1 |
Token error or general error |
2 |
Team not found or ambiguous team |
3 |
List not found |
4 |
Network error |
5 |
API error |
99 |
Unexpected error |
Getting Help
For additional support:
Check the GitHub Issues
Review the ClickUp API documentation
Verify your environment with
quickup --help