podium-core-workflow-b

Solid

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

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
97
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Podium Core Workflow B ## Overview Manage reviews and payments with Podium: request reviews from customers, track review status, and create payment invoices. ## Prerequisites - Completed `podium-core-workflow-a` (messaging) - Reviews and Payments features enabled in Podium account ## Instructions ### Step 1: Request a Review ```typescript // Send a review request to a customer const { data } = await podium.post(`/locations/${locationId}/review-invitations`, { data: { attributes: { 'contact-phone': '+15551234567', 'customer-name': 'Jane Doe', }, }, }); console.log(`Review invitation sent: ${data.data.id}`); ``` ### Step 2: List Reviews ```typescript const { data } = await podium.get(`/locations/${locationId}/reviews`); for (const review of data.data) { console.log(` ${review.attributes.rating}/5 — ${review.attributes.body}`); } ``` ### Step 3: Create a Payment Invoice ```typescript const { data } = await podium.post(`/locations/${locationId}/invoices`, { data: { attributes: { 'contact-phone': '+15551234567', amount: 5000, // $50.00 in cents description: 'Service invoice #1234', }, }, }); console.log(`Invoice created: ${data.data.id}, amount: $${data.data.attributes.amount / 100}`); ``` ## Output - Review invitations sent to customers - Review listing with ratings and content - Payment invoices created and tracked ## Error Handling | Error | Cause | Solution | |-------|-------|----------| | `422 Invalid amount`...

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

podium-core-workflow-a

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

podium-webhooks-events

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

2,266 Updated today
jeremylongshore
AI & Automation Solid

podium-ci-integration

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

2,266 Updated today
jeremylongshore
AI & Automation Solid

podium-performance-tuning

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

2,266 Updated today
jeremylongshore
AI & Automation Solid

podium-security-basics

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

2,266 Updated today
jeremylongshore