Claude-skill-registry kapso-api
Kapso Platform API for customer onboarding, setup links, phone number provisioning, and connection detection. Use when working with multi-tenant WhatsApp integrations, embedded signup, or customer management.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/kapso-api" ~/.claude/skills/majiayu000-claude-skill-registry-kapso-api && rm -rf "$T"
manifest:
skills/data/kapso-api/SKILL.mdsource content
Kapso Platform API
When to use
Use this skill for Platform API operations: creating customers, generating setup links, provisioning phone numbers, or detecting WhatsApp connections.
Setup
Base host:
https://api.kapso.ai (scripts append /platform/v1)
Auth header:
X-API-Key: <api_key>
How to
Onboard a customer
- Create customer:
POST /customers - Generate setup link:
POST /customers/:id/setup_links - Customer completes embedded signup
- Use
to send messagesphone_number_id
Detect connection
Option A: Project webhook
whatsapp.phone_number.created
Option B: Success redirect URL query params
Use both for best UX and backend reliability.
Provision phone numbers
When creating a setup link, set:
{ "setup_link": { "provision_phone_number": true, "phone_number_country_isos": ["US"] } }
Notes
- Platform API base:
/platform/v1 - Meta proxy base:
(use for messaging and templates)/meta/whatsapp/v24.0 - Use
as the primary WhatsApp identifierphone_number_id
References
- references/platform-api-reference.md - Full endpoint reference
- references/getting-started.md - Initial setup guide
- references/setup-links.md - Setup link configuration
- references/detecting-whatsapp-connection.md - Connection detection methods
Related skills
- Workflow automationkapso-automation
- WhatsApp messaging and templateswhatsapp-messaging
- WhatsApp Flowswhatsapp-flows
- Operations and webhookskapso-ops