Quick overview
This workflow collects a first name, last name, and SSN via an n8n form, checks the combination using the Searchbug SSN Name Match API, and appends a normalized, masked-result record to Google Sheets.
How it works
- Receives a submission from an n8n form that asks for first name, last name, SSN (full 9 digits or last 4), and optional notes.
- Cleans the SSN to digits only, determines whether it is a full SSN or last-4 input, and generates a masked SSN for storage.
- Sends the name and cleaned SSN to the Searchbug SSN Name Match endpoint (TYPE=api_ssnn) and continues even if the API returns an error.
- Normalizes the Searchbug JSON response into consistent fields such as match result/score, SSN state/year/status, and any linked names, DOBs, and cities, while keeping only the masked SSN.
- Appends a new row with the normalized results and metadata (including submission timestamp and notes) to a Google Sheets tab.
Setup
- Add your Searchbug credentials by filling in CO_CODE and PASS in the HTTP request body parameters.
- Connect a Google Sheets account and set the target spreadsheet document ID and sheet/tab name.
- Create the Google Sheets tab with header columns that match the fields being appended (for example: submitted_at, fname, lname, ssn_masked, ssn_type, status, api_error, match_score, match_result, and the other mapped result columns).
- Activate the workflow and share/use the n8n form URL for data entry.