ERP/HRIS Integration
Workday, Zoho, Salesforce, SAP
Seamless integration with your existing business systems for automatic verification workflows. Connect Cleared API to Workday, Zoho, Salesforce, or any ERP/HRIS system.
How It Works
- 1Connect Cleared API to your ERP/HRIS system
- 2Set workflow triggers (e.g., "candidate moves to background check stage")
- 3System automatically initiates verification via Cleared API
- 4Verification results sync back to ERP automatically
- 5HR/Finance teams see verification status in their familiar interface
- 6No context switching—everything in one system
Best For
Large enterprises
BPOs and call centres
Companies with existing ERPs
HR departments
Finance teams
Automated workflows
Technical Implementation
Workday Integration Example
JavaScript
// 1. Workday triggers your middleware when candidate status changes
POST /your-api/workday/background-check
{
"candidateId": "12345",
"name": "John Smith",
"email": "john@example.com"
}
// 2. Your middleware calls Cleared
const response = await axios.post(
'https://cleared.id/api/v1/merchant/identity/verification/initiate',
{
name: data.name,
emailAddress: data.email,
verificationRequests: [
{ type: 'identity', required: true },
{ type: 'employment', required: true },
{ type: 'background', required: true }
]
},
{ headers: { 'Authorization': `Bearer ${apiKey}` } }
);
// 3. Webhook sends results back
// 4. Update Workday with verification status
await updateWorkdayCandidate(data.candidateId, {
backgroundCheckStatus: 'cleared'
});