Tutorial KYCOnboarding

Automatiza el onboarding KYC en 15 minutos

Flujo paso a paso para verificar la identidad de tus usuarios usando el flujo de Webhooks de Bridflow.

calendar_today 2 ene 2026
schedule 15 min read
Bridflow Team Bridflow Team

Onboarding clients in the fintech world is a hurdle. Here is how to automate the KYC/KYB process with Bridflow.

KYB/KYC Requirements

Regulations require verifying identity and proof of address. Our API allows you to upload these documents directly or use our hosted link.

API Flow

Backend Integration
const link = await bridflow.identity.createSession({
    account_id: 'acct_123',
    return_url: 'https://tu-app.com/verificado'
});
res.redirect(link.url);

Handling status webhooks

Listen for kyc.verified and kyc.rejected events to automate account activation or request more information.

Tags: KYCOnboardingWebhooksAPI