From podium-pack
Implements Podium upgrade migration patterns with REST API v4 and OAuth2 authentication. Covers locations API calls, error handling for 401/429/403, retries for messaging/reviews/payments.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin podium-packThis skill is limited to using the following tools:
Implementation patterns for Podium upgrade migration using the REST API with OAuth2 authentication.
Provides TypeScript patterns for Podium API deploy integration using OAuth2-authenticated REST calls for messaging, reviews, and payments.
Migrate Instantly.ai API v1 integrations to v2: update Bearer token auth, REST endpoints, paths, methods, request formats, and pagination.
Upgrades intercom-client npm SDK from v5 to v6+, migrates contacts/conversations API calls, handles TypeScript changes, error handling, and pagination.
Share bugs, ideas, or general feedback.
Implementation patterns for Podium upgrade migration using the REST API with OAuth2 authentication.
podium-install-auth setupimport axios from 'axios';
const podium = axios.create({
baseURL: 'https://api.podium.com/v4',
headers: { 'Authorization': `Bearer ${process.env.PODIUM_ACCESS_TOKEN}` },
});
const { data } = await podium.get('/locations');
console.log(`Locations: ${data.data.length}`);
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Expired token | Refresh OAuth token |
| 429 Rate Limited | Too many requests | Implement backoff |
| 403 Forbidden | Missing scope | Update OAuth app scopes |
See related Podium skills for more workflows.