Interactive SDK Integration Demo
Experience the Vehicle Custody Identity Verification SDK in action. This demo shows the complete integration flow including SDK configuration, verification process, and webhook events.
1
SDK Configuration
import { createVecuIDVSDK } from 'vec-idp-web-sdk';
const sdk = createVecuIDVSDK({
deploymentStage: 'sandbox',
bearerToken: 'your-bearer-token-here',
debug: true
});
// Start verification with customer data
await sdk.startVerificationWithCustomer('#container', {
customerInfo: { /* ... */ },
config: {
showSsnOnInitialForm: true // Optional: Control SSN field visibility
}
});SDK initialized and ready for verification
2
Customer Information
Name: John Doe
Email: john.doe@example.com
Phone: +1-555-123-4567
123 Main Street
Anytown, CA 12345
US
3
Verification Process
Complete customer information setup to proceed