salesloft-install-auth

Featured

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".

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 Install & Auth ## Overview Configure access to the SalesLoft REST API v2. SalesLoft supports two OAuth 2.0 flows (authorization code and client credentials) plus API key auth. All requests require `Authorization: Bearer <token>` header. Base URL: `https://api.salesloft.com/v2/`. ## Prerequisites - SalesLoft account with API access enabled - App registered at [developers.salesloft.com](https://developers.salesloft.com) for OAuth - Node.js 18+ or Python 3.10+ ## Instructions ### Step 1: Install HTTP Client ```bash # Node.js — no official SDK, use axios or fetch npm install axios dotenv # Python pip install requests python-dotenv ``` ### Step 2: Register OAuth Application 1. Go to [developers.salesloft.com](https://developers.salesloft.com) > Your Applications 2. Click "Create Application" 3. Set redirect URI (e.g., `http://localhost:3000/callback`) 4. Copy `client_id` and `client_secret` ### Step 3: Configure Environment ```bash # .env SALESLOFT_CLIENT_ID=your-client-id SALESLOFT_CLIENT_SECRET=your-client-secret SALESLOFT_REDIRECT_URI=http://localhost:3000/callback SALESLOFT_API_KEY=your-api-key # If using API key auth ``` ### Step 4: Implement OAuth Authorization Code Flow ```typescript import axios from 'axios'; // Step 1: Redirect user to authorize const authUrl = `https://accounts.salesloft.com/oauth/authorize?` + `client_id=${process.env.SALESLOFT_CLIENT_ID}` + `&redirect_uri=${encodeURIComponent(process.env.SALESLOFT_REDIRECT_URI!)}` + `&...

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

salesloft-upgrade-migration

Migrate between SalesLoft API versions and handle breaking changes. Use when SalesLoft announces API deprecations, upgrading OAuth flows, or transitioning from legacy endpoints. Trigger: "upgrade salesloft", "salesloft migration", "salesloft API version".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-ci-integration

Set up CI/CD pipelines for SalesLoft integrations with GitHub Actions. Use when automating SalesLoft integration tests, validating OAuth tokens, or running cadence sync validation in CI. Trigger: "salesloft CI", "salesloft GitHub Actions", "salesloft automated tests".

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
AI & Automation Featured

hootsuite-install-auth

Install and configure Hootsuite SDK/CLI authentication. Use when setting up a new Hootsuite integration, configuring API keys, or initializing Hootsuite in your project. Trigger with phrases like "install hootsuite", "setup hootsuite", "hootsuite auth", "configure hootsuite API key".

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