Agent skill

podium-sdk-patterns

Podium sdk patterns — business messaging and communication platform integration. Use when working with Podium API for messaging, reviews, or payments. Trigger with phrases like "podium sdk patterns", "podium-sdk-patterns".

Stars 1,803
Forks 241

Install this agent skill to your Project

npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/podium-pack/skills/podium-sdk-patterns

SKILL.md

Podium Sdk Patterns

Overview

Implementation patterns for Podium sdk patterns using the REST API with OAuth2 authentication.

Prerequisites

  • Completed podium-install-auth setup
  • Valid OAuth2 access token

Instructions

Step 1: API Call Pattern

typescript
import 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}`);

Output

  • Podium API integration for sdk patterns
  • OAuth2 authenticated requests
  • Error handling and retry logic

Error Handling

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

Resources

Next Steps

See related Podium skills for more workflows.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results