Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Execute BambooHR production deployment checklist and rollback procedures. Use when deploying BambooHR integrations to production, preparing for launch, or implementing go-live procedures with BambooHR API. Trigger with phrases like "bamboohr production", "deploy bamboohr", "bamboohr go-live", "bamboohr launch checklist", "bamboohr prod ready".
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 51% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 58% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 72% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 53% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 10% | 0% |
Complete pre-launch checklist for deploying BambooHR integrations to production, covering API configuration, data integrity, monitoring, and rollback procedures.
BAMBOOHR_COMPANY_DOMAIN set correctly for productionAccept: application/json headerX-BambooHR-Error-Message header parsed for error detailsRetry-After header honored on 503 responsesYYYY-MM-DD format)null or "")typescript// api/health.ts import { BambooHRClient, BambooHRApiError } from '../bamboohr/client'; interface HealthStatus { status: 'healthy' | 'degraded' | 'down'; bamboohr: { connected: boolean; latencyMs: number; error?: string; employeeCount?: number; }; timestamp: string; } export async function healthCheck(client: BambooHRClient): Promise<HealthStatus> { const start = Date.now(); try { const dir = await client.getDirectory(); return { status: 'healthy', bamboohr: { connected: true, latencyMs: Date.now() - start, employeeCount: dir.employees.length, }, timestamp: new Date().toISOString(), }; } catch (err) { const latency = Date.now() - start; const errMsg = err instanceof BambooHRApiError ? err.message : 'Unknown error'; return { status: err instanceof BambooHRApiError && err.retryable ? 'degraded' : 'down', bamboohr: { connected: false, latencyMs: latency, error: errMsg }, timestamp: new Date().toISOString(), }; } }
typescript// Recommended alert thresholds for BambooHR integrations const ALERTS = { p1_critical: [ { name: 'Auth failure', condition: '401/403 errors > 0', action: 'Page on-call' }, { name: 'API down', condition: 'Health check fails 3x consecutive', action: 'Page on-call' }, ], p2_high: [ { name: 'Rate limited', condition: '503 errors > 3/min', action: 'Slack alert' }, { name: 'High latency', condition: 'p99 > 5000ms', action: 'Slack alert' }, { name: 'Sync failure', condition: 'Sync job fails', action: 'Slack + ticket' }, ], p3_medium: [ { name: 'Elevated errors', condition: '4xx errors > 10/hour', action: 'Log + daily review' }, { name: 'Data mismatch', condition: 'Schema validation failures', action: 'Log + ticket' }, ], };
bash#!/bin/bash # deploy-bamboohr-integration.sh echo "=== Pre-flight checks ===" # 1. Verify BambooHR API is up curl -sf "https://status.bamboohr.com" > /dev/null || { echo "BambooHR may be down!"; exit 1; } # 2. Verify production credentials work STATUS=$(curl -s -o /dev/null -w "%{http_code}" \ -u "${BAMBOOHR_API_KEY}:x" \ -H "Accept: application/json" \ "https://api.bamboohr.com/api/gateway.php/${BAMBOOHR_COMPANY_DOMAIN}/v1/employees/directory") [ "$STATUS" -eq 200 ] || { echo "Auth check failed: $STATUS"; exit 1; } echo "API auth: OK" # 3. Deploy echo "=== Deploying ===" # Platform-specific deployment command here # kubectl apply -f k8s/production.yaml # fly deploy # gcloud run deploy ... # 4. Post-deploy health check echo "=== Post-deploy verification ===" sleep 10 curl -sf "https://your-app.com/api/health" | jq .bamboohr
bash# Immediate rollback # kubectl rollout undo deployment/bamboohr-integration # fly releases rollback # gcloud run services update-traffic --to-revisions=REVISION=100 # Verify rollback health curl -sf "https://your-app.com/api/health" | jq .
| Alert | Condition | Severity | Response | |-------|-----------|----------|----------| | Auth failure | 401/403 from BambooHR | P1 | Check API key; rotate if compromised | | Rate limit storm | Continuous 503s | P2 | Pause sync jobs; reduce request rate | | Sync data gap | Missing employees in sync | P2 | Run full resync; check changed-since | | Schema mismatch | New/removed BambooHR fields | P3 | Update field mappings; add defaults |
For version upgrades, see bamboohr-upgrade-migration.
Other measured skills in the registry, with their headline benchmark lift.