persona-core-workflow-b

Featured

Work with Persona verification types: government ID, selfie, database checks. Use when implementing specific verification checks, reviewing verification results, or building custom verification workflows. Trigger with phrases like "persona verification", "government ID check", "selfie verification", "persona database check", "verification results".

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 B — Verification Checks ## Overview Work with Persona's verification types: government ID (passport, driver's license), selfie liveness detection, and database checks (SSN, watchlist). Covers retrieving verification details, interpreting check results, and handling edge cases. ## Prerequisites - Completed `persona-core-workflow-a` (inquiry flow) - Inquiry Template with verification checks configured ## Instructions ### Step 1: List Verifications for an Inquiry ```python import os, requests HEADERS = { "Authorization": f"Bearer {os.environ['PERSONA_API_KEY']}", "Persona-Version": "2023-01-05", } BASE = "https://withpersona.com/api/v1" # Get all verifications for an inquiry resp = requests.get(f"{BASE}/inquiries/inq_XXXXX", headers=HEADERS) resp.raise_for_status() inquiry = resp.json()["data"] verifications = inquiry["relationships"]["verifications"]["data"] for v in verifications: v_resp = requests.get(f"{BASE}/verifications/{v['id']}", headers=HEADERS) v_data = v_resp.json()["data"]["attributes"] print(f" Type: {v['type']}") print(f" Status: {v_data['status']}") # passed, failed, requires_retry print(f" Checks: {v_data.get('checks', [])}") ``` ### Step 2: Government ID Verification Results ```python # Government ID verification includes extracted data def get_gov_id_details(verification_id: str) -> dict: resp = requests.get(f"{BASE}/verifications/{verification_id}", headers=HEADERS) resp.raise_for_status(...

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