bamboohr-install-auth
Install and configure BambooHR SDK/CLI authentication. Use when setting up a new BambooHR integration, configuring API keys, or initializing BambooHR in your project. Trigger with phrases like "install bamboohr", "setup bamboohr", "bamboohr auth", "configure bamboohr API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
bamboohr-pack
Claude Code skill pack for BambooHR (18 skills)
Installation
This skill is included in the bamboohr-pack plugin:
/plugin install bamboohr-pack@claude-code-plugins-plus
Click to copy
Instructions
BambooHR Install & Auth
Overview
Set up BambooHR SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- BambooHR account with API access
- API key from BambooHR dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @bamboohr/sdk
# Python
pip install bamboohr
Step 2: Configure Authentication
# Set environment variable
export BAMBOOHR_API_KEY="your-api-key"
# Or create .env file
echo 'BAMBOOHR_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in BambooHR dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.bamboohr.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { BambooHRClient } from '@bamboohr/sdk';
const client = new BambooHRClient({
apiKey: process.env.BAMBOOHR_API_KEY,
});
Python Setup
from bamboohr import BambooHRClient
client = BambooHRClient(
api_key=os.environ.get('BAMBOOHR_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to bamboohr-hello-world for your first API call.