persona-core-workflow-a

Featured

Build a complete KYC verification flow with Persona inquiries and embedded UI. Use when implementing identity verification, building KYC onboarding, or integrating Persona's hosted flow into your application. Trigger with phrases like "persona KYC flow", "identity verification", "persona inquiry workflow", "onboarding verification".

AI & Automation 2,359 stars 334 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

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

Skill Content

# Persona Core Workflow A — KYC Inquiry Flow ## Overview Build a complete KYC onboarding flow: create an inquiry from a template, embed the Persona verification UI in your web app, handle completion callbacks, and store verification results. ## Prerequisites - Completed `persona-install-auth` setup - Inquiry Template configured in Persona Dashboard - Web application with a frontend (React, HTML, etc.) ## Instructions ### Step 1: Backend — Create Inquiry Endpoint ```typescript // server.ts — Express endpoint to create inquiries import express from 'express'; import axios from 'axios'; const app = express(); app.use(express.json()); const persona = axios.create({ baseURL: 'https://withpersona.com/api/v1', headers: { 'Authorization': `Bearer ${process.env.PERSONA_API_KEY}`, 'Persona-Version': '2023-01-05', }, }); app.post('/api/verify', async (req, res) => { const { userId, email } = req.body; const { data } = await persona.post('/inquiries', { data: { attributes: { 'inquiry-template-id': process.env.PERSONA_TEMPLATE_ID, 'reference-id': userId, 'fields': { 'email-address': { type: 'string', value: email }, }, }, }, }); res.json({ inquiryId: data.data.id, sessionToken: data.data.attributes['session-token'], }); }); ``` ### Step 2: Frontend — Embed Persona Flow ```html <!-- Include Persona's JavaScript SDK --> <script src="https://cdn.withpersona.com/dist/persona-v5.0.0.js"></sc...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
8 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category