Onboarding Pages
Complete Application Forms with Verification
Create custom application pages with lead capture, verifications, and digital document signing—all in one flow. Perfect for loan applications, rental applications, employee onboarding, and customer applications.
How It Works
- 1Build onboarding page in Cleared portal with visual editor
- 2Add your logo and branding (colours, button text)
- 3Create lead capture form (collect application info)
- 4Select required verifications (identity, address, income, etc.)
- 5Attach documents for customer to sign (rental agreement, employment contract)
- 6Share page link with applicants
- 7Applicants complete everything in one flow
- 8You receive webhook with all data, verifications, and signed documents
Best For
Loan applications
Rental applications
Employee onboarding
Customer applications
All-in-one workflows
No-code solution
Technical Implementation
Create Onboarding Page via API
JavaScript
POST /api/v1/merchant/screening/onboarding/pages/create
{
"pageTitle": "Tenant Application",
"requiredVerifications": ["identity", "income", "references"],
"leadCapture": {
"enabled": true,
"fields": ["firstName", "lastName", "email", "phone"]
},
"documents": ["rental-agreement.pdf"],
"webhook": "https://yourapi.com/webhooks/applications"
}
// Response:
{
"pageUrl": "https://cleared.id/onboarding/tenant-app"
}
// Webhook receives complete submission:
{
"leadData": {...},
"verifications": {
"identity": "cleared",
"income": "cleared"
},
"signedDocuments": [...]
}