Sign Up For Verification Access | The Work Number (2024)

Start the verification process

To purchase verification reports, through our pay-as-you-go eCommerce channel, please complete this form. The information you provide will go through a rapid, thorough credentialing process. After credentialing is completed, you can log in and start using our verification service.

All fields are required.

How often do you expect to purchase verifications?

`; $('#industryUseCase fieldset').append(option); optionCount++; }); window.industryJson = {"Agent - Property Management":["Property Management","212", "Agent", "3"],"Agent - Consumer Finance":["Consumer Finance","204", "Agent", "3"],"Auto Finance - Below Prime":["Auto","201", "Auto Finance-Below Prime", "4"],"Pre-Employment Screening - Government":["Government","208", "Background Investigation", "10"],"Background Investigation - Pre Employment Screening":["Pre-Employment Screening","211", "Background Investigation", "10"],"Background Investigation - Property Management":["Property Management","212", "Background Investigation", "10"],"Credit Union - Consumer Finance":["Consumer Finance","204", "Credit Union", "14"],"Credit Union - Mortgage":["Mortgage","209", "Credit Union", "14"],"First Party Collections - Consumer Finance":["Consumer Finance","204", "First Party Collections", "1"],"Healthcare- Pre Employment Screening":["Emerging Markets","207", "Healthcare", "32"],"HR/Recruiting - Pre Employment Screening":["Pre-Employment Screening","211", "HR/Recruiting", "17"],"HR/Recruiting - Education":["Education","206", "HR/Recruiting", "17"],"HR/Recruiting - Government":["Government","208", "HR/Recruiting", "17"],"Insurance":["Emerging Markets","16", "Insurance", "33"],"Mortgage Broker":["Mortgage","209", "Mortgage Broker", "20"],"Mortgage Banker":["Mortgage","209", "Mortgage Banker", "19"],"Personal Loans - Consumer Finance":["Consumer Finance","204", "Personal Loans", "24"],"Servicing - Consumer Finance":["Consumer Finance","204", "Servicing", "27"],"Servicing - Mortgage":["Mortgage","209", "Servicing", "27"],"Tenant Screening":["Property Management","212", "Tenant Screening", "31"]}; window.industryUseCase = function (val){ var Mval = val; $("#industryLabel").val(industryJson[Mval][0]); $("#industry").val(industryJson[Mval][1]); $("#industryUseLabel").val(industryJson[Mval][2]); $("#industryUse").val(industryJson[Mval][3]); }});

// Get all radio buttons with the class frequentlyPurchasingRadioconst radioButtons = document.querySelectorAll('.frequentlyPurchasingRadio');// Get the div where you want to append the valueconst frequentlyPurchasingValueDiv = document.querySelector('.frequentlyPurchasingValue');// Add a change event listener to each radio buttonradioButtons.forEach(function(radioButton) { radioButton.addEventListener('change', function() { // Check if the radio button is checked if (radioButton.checked) { // Get the value of the checked radio button const selectedValue = radioButton.value; // Append the value to the frequentlyPurchasingValueDiv frequentlyPurchasingValueDiv.textContent = selectedValue; } });}); });$(document).ready(function() { //purchase verifications radio buttons $('input:radio[name="_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_frequentlyPurchasing"]').change( function(){ $("#frequencyPurchasingHidden").val($(this).val()); if ($(this).val() == '1 to 2 verifications per day') { $('.salesTeam').show(); $('.withCreditCard, .noCard').hide(); $("#representativeRequest").val($("#representativeRequest option:first").val()); }else { $('.salesTeam').hide(); $('.withCreditCard').show(); $('.noCard').hide(); }$(".verifyFreqValue").text($(this).val()); }); $('input[name="representativeRequest"]').change(function() { if ($('input[name="representativeRequest"]:checked').val() == 'yesRepresentative') { $('.withCreditCard').hide(); $('.noCard').show(); setIframeHeight(); } else if ($('input[name="representativeRequest"]:checked').val() == 'noRepresentative') { $('.withCreditCard').show(); $('.noCard').hide(); } }); $('#appliesToYou').change( function() { if ($(this).val() == 'I do not have a credit card') { $('.withCreditCard').hide(); $('.noCard').show(); setIframeHeight(); }else if ($(this).val() == '') { $('.witthCreditCard, .noCard').hide(); }else if ($(this).val() == 'I have a credit card I can use') { $('.withCreditCard').show(); $('.noCard').hide(); }else { $('.witthCreditCard, .noCard').hide(); } }); $( "#editstep1" ).click(function() { // $("#step-1-summary").hide(); $('#step-1').show(); $("#statusIconFirst").attr("src","https://assets.equifax.com/wfs/workforce/images/stop-minus-01.svg"); $("#btnSubmit"). attr('disabled','disabled'); }); $( "#editstep2" ).click(function() { $("#step-2-summary").hide(); $('#step-2').show(); $("#statusIconSecond").attr("src","https://assets.equifax.com/wfs/workforce/images/stop-minus-01.svg"); $("#btnSubmit"). attr('disabled','disabled'); }); $( "#editstep3" ).click(function() { $("#step-3-summary").hide(); $('#step-3').show(); $("#statusIconThird").attr("src","https://assets.equifax.com/wfs/workforce/images/stop-minus-01.svg"); $("#btnSubmit"). attr('disabled','disabled'); }); $( "#editstep3" ).click(function() { $("#step-3-summary").hide(); $('#step-3').show(); $("#statusIconFourth").attr("src","https://assets.equifax.com/wfs/workforce/images/stop-minus-01.svg"); $("#btnSubmit"). attr('disabled','disabled'); }); const inputDropdown = document.querySelectorAll(".input-dropdown"); inputDropdown.forEach(function (dropdown, index) { let dropdownInput = dropdown.querySelector(".input-dropdown__input"); let dropdownMenu = dropdown.querySelector(".dropdown-menu"); let radioInputCollection = dropdown.querySelectorAll(".dropdown-item__input"); let radioLabelCollection = dropdown.querySelectorAll(".dropdown-item__label"); let options = Array.from(radioLabelCollection); let selectedIndrustyUseCase = ""; function findMatches(search, options) { return options.filter((option) => { const regex = new RegExp(search, "gi"); return option.textContent.match(regex); }); } function filterOptions(e) { options.forEach((option) => { option.closest(".dropdown-item").classList.add("d-none"); }); let matchArray = findMatches(this.value, options); matchArray.forEach((option) => { option.closest(".dropdown-item").classList.remove("d-none"); }); } radioLabelCollection.forEach(function (radioLabel, index) { radioLabel.addEventListener("click", function (e) { dropdownInput.value = this.textContent; dropdownHide(); }); }); radioInputCollection.forEach(function (radioInput, index) { radioInput.addEventListener("change", function (e) { selectedIndrustyUseCase = document.querySelector('.dropdown-item__input:checked').value; dropdownInput.value = selectedIndrustyUseCase; industryUseCase(selectedIndrustyUseCase); }); }); function dropdownShow(e) { dropdownInput.setAttribute("aria-expanded", true); dropdownMenu.classList.add("show"); } function dropdownHide(e) { dropdownInput.setAttribute("aria-expanded", false); dropdownMenu.classList.remove("show"); } dropdownInput.addEventListener("focusin", function (e) { dropdownShow(); }); document.documentElement.addEventListener("click", function () { if (dropdownMenu.classList.contains("show")) { dropdownHide(); } }); function stopProp(e) { e.stopPropagation(); } dropdownInput.addEventListener("change", filterOptions); dropdownInput.addEventListener("keyup", filterOptions); dropdownInput.addEventListener("click", stopProp); dropdownMenu.addEventListener("click", stopProp); });});$( document ).ready(function() { document.querySelector('#step-3 .input-dropdown').setAttribute('id', 'inputDropdownContainer') $('#industryUseCaseRadio-1').attr('data-parsley-required', 'true'); $('#industryUseCaseRadio-1').attr('data-parsley-group', 'step-3'); $('#industryUseCaseRadio-1').attr('data-parsley-error-message', 'Please select a Industry Use in the list.'); $('#industryUseCaseRadio-1').attr('data-parsley-no-focus', 'true'); $('#industryUseCaseRadio-1').attr('data-parsley-errors-container', '#inputDropdownContainer'); $('#industryUseCaseRadio-1').parsley().on('field:error', function() { document.getElementById("step-3").scrollIntoView(); $('#selectIndustryCase').addClass('parsley-error'); }); $('#industryUseCaseRadio-1').parsley().on('field:success', function() { $('#selectIndustryCase').removeClass('parsley-error'); });});function setEditSummary(section){switch(section){case"#step-1": var firstName = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_firstName']").val(); var lastName = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_lastName']").val(); var fullName = firstName + " " + lastName; $(".firstNameValue").text(fullName); $(".workEmailValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_workEmail']").val()); if ($("#emailAddressUsageYes").is(":checked")) { $(".sharedEmailValue").text("Yes"); }else{ $(".sharedEmailValue").text("No"); } $(".workPhoneValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_workPhone']").val()); $(".mobilePhoneValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_mobilePhone']").val());$("#statusIconFirst").attr("src","https://assets.equifax.com/wfs/workforce/images/check-mark-01.svg");break;case"#step-2": var headquartersAddress1 = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_headquartersAddress1']").val(); var city = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_city3']").val(); var stateOption = $("select[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_HeadquarterState'] option:selected").text(); var headquartersZip = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_headquartersZip']").val(); var aptSuite = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_headquartersAddress2']").val(); var concatenatedAddressValue = headquartersAddress1; if (aptSuite) { concatenatedAddressValue += ", Appt/Suite " + aptSuite; } concatenatedAddressValue += ", " + city + ", " + stateOption + ", " + headquartersZip; $(".headquartersValue").text(concatenatedAddressValue); $(".submit-buttons").show(); $(".companyValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_companyName']").val()); $(".websiteValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_companyAgency']").val()); $(".salesTaxExemptValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_salesTaxExempt']").val()); if ($("#landlord").is(":checked")) { $(".resellerValue").text("No"); $(".salesTaxExemptValue").text("").val(); } else{ if ($("#resellerYes").is(":checked")) { $(".resellerValue").text("Yes"); } else{ $(".resellerValue").text("No"); } if ($("#salesTaxExemptYes").is(":checked")) { $(".salesTaxExemptValue").text("Yes"); } else{ $(".salesTaxExemptValue").text("No"); } }$("#statusIconSecond").attr("src","https://assets.equifax.com/wfs/workforce/images/check-mark-01.svg");break;case"#step-3": var headquartersAddress2 = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_companyPhysicalAddress']").val(); var city2 = $("#locality2").val(); var stateOption2 = $("#dropdownState2 option:selected").text(); var headquartersZip2 = $("#postal_code2").val(); var aptSuite2 = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_companyPhysicalAddress2']").val(); var concatenatedAddressValue2 = headquartersAddress2 + ", " + (aptSuite2 ? "Appt/Suite " + aptSuite2 + ", " : "") + city2 + ", " + stateOption2 + ", " + headquartersZip2; $(".streetValue").text(concatenatedAddressValue2);$("#statusIconThird").attr("src","https://assets.equifax.com/wfs/workforce/images/check-mark-01.svg"); $(".industryUseCaseValue").text($("#industryUseCase .dropdown-item__input:checked").val());$(".permPurposeValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_reasonAccesingLabel']").val());$(".verifyFreqValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_frequentlyPurchasing']:checked").val());$(".commentsValue").text(document.getElementById("dataUsage").value); $(".apptSuitesValue").text(document.getElementById("companyPhysicalAddress2").value); $(".streetCitysValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_city2']").val()); $(".streetStateValue").text($("select[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_state2'] option:selected").text()); $(".streetZipValue").text($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_zip2']").val());$("#statusIconFourth").attr("src","https://assets.equifax.com/wfs/workforce/images/check-mark-01.svg");break;}}function goBack2Previous(previous, current, step) {$(current).stop().fadeOut(0);$(previous).stop().fadeIn('slow');$('html, body').animate({scrollTop: $(previous).offset().top}, 1000);}function validateInformation(current, next, section) {if ($('#pos-signup-form').parsley().validate(section)) {var summaryClass = next + "-summary";setEditSummary(current);$(current).collapse("hide");$(next).addClass("show");$(summaryClass).hide();$('html, body').animate({scrollTop: $(next).top}, 1000); document.getElementById("statevalback").value = $('#HeadquarterState :selected').text();}}function validateLast(current, section) {if ($('#pos-signup-form').parsley().validate(section)) {setEditSummary(current);//$(current).stop().fadeOut(0);$('#btnSubmit').removeAttr("disabled");var stateSelected = $('#dropdownState2 :selected').text();if(stateSelected){document.getElementById("statevalback").value = $('#dropdownState2 :selected').text();} }}var safetext = (function(text){ this.innerText = this.textContent = text; return this.innerHTML.replace(/^\s+|\s+$/g, '');}).bind(document.createElement('div')); function goBack2Previous(previous, current, step) {$(current).stop().fadeOut(0);$(previous).stop().fadeIn('slow');$('html, body').animate({scrollTop: $(previous).offset().top}, 1000);}function getCookie(name) { function escape(s) { return s.replace(/([.*+?\^$(){}|\[\]\/\\])/g, '\$1'); } var match = document.cookie.match(RegExp('(?:^|;\\s*)' + escape(name) + '=([^;]*)')); return match ? match[1] : null;}$('.typeOfHeadquarter input').removeAttr('data-parsley-required', '');$('#pos-signup-form').parsley();$('#pos-signup-form').submit(function (event) {event.preventDefault(); if (validCaptcha == false) { $('.g-recaptcha-error').remove(); $('.g-recaptcha').before('

*Please check the Captcha box.

') } else { $("#btnSubmit").attr("disabled", true); var data = $('#pos-signup-form').serialize(); document.getElementById("pageRef").value = ""; var industryCheck = safetext(document.getElementById("industryLabel").value); var industryUse = safetext(document.getElementById("industryUseLabel").value); var permPurpose = safetext(document.getElementById("reasonAccesingLabel").value); var reseller = safetext($("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_areYouReseller']:checked").val()); var frequentlyP = ""; const verificationFrequency = document.getElementsByName('_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_frequentlyPurchasing'); verificationFrequency.forEach(function(radio) { if(radio.checked) { frequentlyP= safetext(radio.value); } }); //empty state var state = document.getElementById("headStateLabel").value; if(!state){ document.getElementById("headStateLabel").value=document.getElementById("statevalback").value; } state = document.getElementById("state2Label").value; if(!state){ document.getElementById("state2Label").value=document.getElementById("statevalback").value; } var certifyConsumer = $("input[name='_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_FairCreditReportingAct']:checked").val(); if (reseller === "Yes" && certifyConsumer !== "Yes"){ window.location.href = "//theworknumber.com/thank-you-req-not-met";}else if ($("input[name='providedEmail']:checked").val() === "No"){ window.location.href = "//theworknumber.com/thank-you-req-not-met";}else{//Retrieves ClientId from cookie var gaValue = getCookie("_ga");if(gaValue != "" && gaValue != null){gaValue = gaValue.slice(6, gaValue.length);} $.ajax({ type: 'POST', url: "https://theworknumber.com/verification-sign-up/register?p_p_id=com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet&p_p_lifecycle=2&p_p_state=normal&p_p_mode=view&p_p_cacheability=cacheLevelPage&service=autofail&industry=" + industryCheck+"&industryUse="+industryUse+"&purpose="+permPurpose+"&reseller="+reseller+"&frequentlyPurchasing="+frequentlyP, data: "", success: function(data) { if(data === "true"){ window.location.href = "//theworknumber.com/thank-you-req-not-met";}else{$.ajax({type: 'POST', url: "https://theworknumber.com/verification-sign-up/register?p_p_id=com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet&p_p_lifecycle=2&p_p_state=normal&p_p_mode=view&p_p_cacheability=cacheLevelPage&service=duplicateCase&caseEmail=" + $("#workEmail").val(), data: "", success: function(data) { if(data === "true"){ window.location.href = "//theworknumber.com/thank-you-existing";} var url = "https://theworknumber.com/verification-sign-up/register?p_p_id=com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet&p_p_lifecycle=1&p_p_state=normal&p_p_mode=view&_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_javax.portlet.action=submitRegistrationForm&p_auth=yqpBlKkC"; data = $('#pos-signup-form').serialize(); //Adds cliendID to form data data = data + '&_com_equifax_webcoe_portlet_pos_registration_EwsPosRegistrationPortlet_clientId=' + gaValue; $.ajax({ url: url, type: 'post', data: data, success: function (msg) { window.location.href = "//theworknumber.com/registration-thank-you"; } }); }}); } } });}}}); $(function(){ $('#industry').change(function(){ var industryValues = $('#industry :selected').text(); $('#industryLabel').val(industryValues); }); $('#industryUse').change(function(){ var industryUseValues = $('#industryUse :selected').text(); $('#industryUseLabel').val(industryUseValues); }); $('#HeadquarterState').change(function(){ var stateSelected = $('#HeadquarterState :selected').text(); $('#headStateLabel').val(stateSelected); document.getElementById("statevalback").value = stateSelected; }); $('#dropdownState2').change(function(){ var stateSelected = $('#dropdownState2 :selected').text(); $('#state2Label').val(stateSelected); document.getElementById("statevalback").value = stateSelected; }); $('#reasonAccesing').change(function(){ var industryUseValues = $('#reasonAccesing :selected').text(); $('#reasonAccesingLabel').val(industryUseValues); }); });$(document).ready(function () { $('a[data-toggle="tooltip"]').tooltip({ animated: 'fade', placement: 'top', trigger: 'click' }); $('#tellUs-about-yourself').on('change', function () { if (this.value == 'I represent a business and want to verify someones employment, income or work history') { $(".form-container").show(); $(".text-container").hide(); } else if (this.value == 'I am an individual who would like to access my own data') { $(".text-container").show(); $(".form-container").hide(); } else { $(".form-container, .text-container").hide(); } }); });

×

' }); }); $('.popover-btn').on('shown.bs.popover', function() { var closeBTN = document.getElementsByClassName("popover-close"); for (var i = 0; i < closeBTN.length; i++) { closeBTN[i].onclick = function() { $('.popover').popover('hide'); }; } }); $(document).ready(function () { // Handle click event on the review button $('#review-button').click(function () { // Check if Parsley validation succeeds if ($('#pos-signup-form').parsley().isValid()) { $('#info-modal').modal('show'); } }); $("#close-modal").click(function() { $('html, body').animate({ scrollTop: $("#pos-signup-form").offset().top }, 1000); $('#info-modal').modal('hide'); $('#step-1').collapse('show'); return false; }); }); // Add a click event listener to the review-button buttondocument.getElementById("review-button").addEventListener("click", function() { // Check if Parsley validation succeeds if ($('#pos-signup-form').parsley().isValid()) { // Call the validateInformation function with the appropriate arguments validateInformation("#step-1", "#step-1-summary", "#step-1"); validateInformation('#step-2','#step-3','step-2'); validateLast('#step-3','step-3'); }});

Sign Up For Verification Access | The Work Number (2024)

References

Top Articles
Latest Posts
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 5687

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.