salesloft-common-errors

Featured

Diagnose and fix SalesLoft API errors: 401, 403, 422, 429, and 5xx. Use when encountering SalesLoft errors, debugging failed requests, or troubleshooting OAuth token issues. Trigger: "salesloft error", "fix salesloft", "salesloft not working", "salesloft 429".

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

# SalesLoft Common Errors ## Overview Quick reference for the most common SalesLoft REST API v2 errors. All errors return JSON with a message field. Rate limiting uses a cost-based system (600 cost/minute). ## Error Reference ### 401 Unauthorized -- Invalid or Expired Token ```json { "error": "Not authorized", "error_description": "The access token is invalid" } ``` **Causes:** Token expired, revoked, or wrong environment key. **Fix:** ```typescript // Check if token works const { data } = await api.get('/me.json').catch(err => { if (err.response?.status === 401) { console.error('Token invalid. Refreshing...'); return refreshAccessToken(storedRefreshToken); } throw err; }); ``` ### 403 Forbidden -- Insufficient Scopes ```json { "error": "Forbidden", "error_description": "Insufficient scope for this resource" } ``` **Fix:** Check app scopes in [developer portal](https://developers.salesloft.com). Common issue: using user-level OAuth for team-level endpoints (cadences, team templates). ### 404 Not Found -- Wrong Endpoint or Deleted Resource ```bash # Verify endpoint format -- all endpoints end with .json curl -s -H "Authorization: Bearer $TOKEN" \ https://api.salesloft.com/v2/people/12345.json # NOT /people/12345 (missing .json suffix) ``` ### 422 Unprocessable Entity -- Validation Errors ```json { "errors": [ { "attribute": "email_address", "message": "is required" }, { "attribute": "email_address", "message": "has already been taken" } ...

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

salesforce-common-errors

Diagnose and fix Salesforce common errors, SOQL issues, and API exceptions. Use when encountering Salesforce errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "salesforce error", "fix salesforce", "salesforce not working", "debug salesforce", "SOQL error", "salesforce exception".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-common-errors

Diagnose and fix common Shopify API errors including 401, 403, 422, 429, and GraphQL errors. Use when encountering Shopify errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "shopify error", "fix shopify", "shopify not working", "debug shopify", "shopify 422".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-prod-checklist

Production readiness checklist for SalesLoft API integrations. Use when deploying SalesLoft integrations to production, preparing for launch, or validating go-live requirements. Trigger: "salesloft production", "deploy salesloft", "salesloft go-live checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-install-auth

Set up SalesLoft API authentication with OAuth 2.0 or API key. Use when configuring a new SalesLoft integration, setting up OAuth flows, or initializing API access to the SalesLoft REST API v2. Trigger: "install salesloft", "setup salesloft", "salesloft auth", "salesloft API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-security-basics

Secure SalesLoft OAuth tokens, API keys, and webhook signatures. Use when implementing token rotation, securing webhook endpoints, or auditing SalesLoft API access controls. Trigger: "salesloft security", "salesloft secrets", "secure salesloft", "salesloft token rotation".

2,266 Updated today
jeremylongshore