The Prescience Partner API is fully compatible with Check-powered payroll platforms. Names, email, date of birth, ZIP, hire date, and employment status all come straight off Check’s
Employee object; legal name, address, and contact details come off Company. Check’s employee.* webhooks give you real-time census-sync triggers, and its benefits API carries employer HSA contributions through payroll with IRS limits enforced.Employee field mapping
Each census member submitted toPUT /groups/{groupId}/census maps from Check as follows. Field references come from Check’s Employee object.
Company field mapping
ForPOST /groups, from Check’s Company object:
What Check does not model
Three census fields live in your application layer rather than in Check. Every benefits provider integrating with Check-powered platforms collects these the same way.- Dependents. Check has no dependents object. Collect spouse and child records (relationship, name, date of birth) in your enrollment UI and include them as
dependents[]. Quoting works without them, but premiums for covered dependents only price correctly when they are present. - Sex at birth. Not on Check’s employee object. Optional in our schema.
- Full-time vs part-time. Check classifies pay (hourly, salaried) on earnings, not employment class on the employee. Source
employmentTypefrom your own HRIS data.
dob and residence are optional in Check’s schema. Both are required for quoting, so validate them before calling PUT /census. The endpoint returns per-row errors for anything missing, so a dry-run submission doubles as a completeness check.
Census sync triggers
Subscribe to Check’s webhook events and forward changes to the census endpoints described in Census sync:
Check has no dedicated termination event; terminations surface as
employee.updated with termination_date set, so inspect that field in your employee.updated handler.
HSA contributions through payroll
The Diamond plan has a $0 employee premium, so there are no per-paycheck premium deductions to configure. Employer HSA contributions can flow through Check directly: create anhsa benefit with company_contribution_amount set and no employee contribution. Check enforces IRS annual limits, including catch-up contributions, on its side.
Sandbox parity
Check’s sandbox and the Prescience test mode compose cleanly: point your Check sandbox employee data at our test-mode endpoints with apsk_test_ key, and the full census, quote, and enrollment flow runs end to end with no live money movement on either side. See Environments.