How a check update arrives
This post is mostly about something the system does not do. A reference reply arrives as an email with a PDF attached, and the interesting engineering decision is to read the fact of it and nothing else.
Key takeaways
- Three lanes: an email reply, a form the owner fills in, and a manual mark-complete.
- The system records that a check came back. It does not read what it said.
- Attachments are handed straight to HR storage and never enter this system’s buckets.
- “Arrived” and “satisfactory” are different, and only a person can set the second.
- An update against an unknown check is a question, never a new item.
Three lanes
- App integration
- Machine learning
- Front-end & mobile
- People
What happens to the attachment
A reference reply arrives at a monitored address with a PDF attached. The system needs to know that it arrived. It does not need, and must not have, the contents.
- Database
- App integration
- Security & identity
- Management
- Analytics
- People
- Outside AWS
Why relay rather than store
Storing a reference or a disclosure would give this system a data class it is not built for. It would need retention rules, access controls tied to HR roles, a deletion path for subject access requests, and a place in whatever record of processing your business keeps. All of that is real work, and none of it makes the chasing any better.
Relaying costs one forward and one delete, and it means the honest answer to “what does this system hold about candidates” is: their name, their start date, and a list of check statuses. That is a sentence you can say to anybody.
Arrived is not satisfactory
The status a reply produces is arrived, and the item stays open. Somebody in HR reads the reference and closes it, which is a second status of cleared or needs a conversation. Collapsing those into one status would be a small simplification with a large failure mode: a reference that arrived and raised a concern would show as green.
- Outstanding. Requested, nothing back.
- Chased. Requested, chased at least once, nothing back. Tracked separately because it changes the prediction.
- Arrived. Something came back and is with HR. The clock stops; the item is not closed.
- Cleared. A person has read it and is satisfied. Only a person sets this.
- Needs a conversation. A person has read it and it is not straightforward. The system does not know why and does not ask.
- Withdrawn. The check is no longer required, usually because the offer changed. Recorded rather than deleted.
An update with no matching check
A reply that cannot be matched to an outstanding item is not silently discarded and is not used to create one. It goes to HR with the message intact and a note saying it could not be matched. In practice it is usually a referee replying to a request for a different candidate, or a reply landing after an item was already closed by hand, and both of those are worth a human glance.
Next: how the prediction works, and why it speaks in three words.
All posts