Automating Checkr + Kit Stack Workflows with Make.com
These tools sit in different operational verticals. Instead of a feature matrix, this page maps a production-grade integration path: trigger → Make.com transform → downstream action, with explicit auth at each API node.
- 1
The Trigger Event
CheckrWhen Checkr emits ‘Report Completed’ via its Webhook Listener, Make.com opens the scenario run. Native trigger catalog for this node:
- Report Completed
- Report Flagged
- Invitation Expired
checkr → make.com payloadwebhook / json{ "source": "checkr", "event": "Report Completed", "listener": "webhook", "category": "HR Software", "auth": "OAuth 2.0" }Alternate entry points: Report Flagged · Invitation Expired
- 2
The Middleware Transformation
Make.comMake.com captures the raw webhook payload, applies router filters on data state (status, adjudication flags, or CRM field presence), then maps JSON objects into the destination schema using native module mappers—no custom ETL service required.
make.com transform mapwebhook / json{ "middleware": "make.com", "filter": { "status": "actionable" }, "map": { "from": "checkr.Report Completed", "to": "kit.Add Tag to Subscriber" }, "nodes": ["checkr", "make", "kit"] } - 3
The Downstream Action
KitKit instantly fires ‘Add Tag to Subscriber’ so the receiving system reflects the upstream event without manual handoff.
- Add Tag to Subscriber
- Add Subscriber to Sequence
- Create Purchase
Optional follow-on actions: Add Subscriber to Sequence · Create Purchase
- 4
Security & Authentication Protocol
Connected API nodes authenticate independently. Confirm token scopes and refresh routines before promoting this scenario to production.
- Checkr
- OAuth 2.0
- Make.com
- OAuth 2.0 / Token Refresh
- Kit
- API Key Pass-through