{"id":39278,"date":"2024-01-18T18:31:04","date_gmt":"2024-01-18T18:31:04","guid":{"rendered":"https:\/\/www.trulioo.com\/?post_type=landing-pages&#038;p=39278"},"modified":"2024-02-23T16:34:08","modified_gmt":"2024-02-23T16:34:08","slug":"mastering-document-verification","status":"publish","type":"landing-pages","link":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification","title":{"rendered":"[WP] Mastering Document Verification"},"content":{"rendered":"\n\t<script>\n\t\twindow.addEventListener(\"resize\", setGradient);\n\n\t\twindow.addEventListener('load', setGradient);\n\n\t\t\/\/ Sets gradient percentage based on ratio of calculated height of top elements vs calculated height of entire div\n\t\tfunction setGradient() {\n\t\t\tconst hasAdditionalInfo = document.querySelector('.legal-text:not(form .legal-text') !== null;\n\t\t\tlet extraPad =\n\t\t\t\twindow.innerWidth >= 1024 ? 60 + (hasAdditionalInfo ? 70 : 0) : 120 + document.querySelector('.grid img.object-contain').clientHeight \/ 2;\n\t\t\tif (window.innerWidth >= 1280) {\n\t\t\t\textraPad += (hasAdditionalInfo ? 20 : 30);\n\t\t\t}\n\t\t\tif (window.innerWidth >= 1600) {\n\t\t\t\textraPad += 20 - (hasAdditionalInfo ? 10 : 20);\n\t\t\t}\n\t\t\tconst ratio = (document.querySelector('h1').clientHeight +\n\t\t\t\tdocument.querySelector('.legal-text').clientHeight + extraPad) \/ document.querySelector('.form-bg').clientHeight;\n\n\t\t\tdocument.querySelector('.form-bg').style.backgroundImage = `linear-gradient(to bottom, #A4DCB4, #A4DCB4 ${ratio*100}%, #172D2D ${ratio*100}%, #172D2D)`;\n\t\t\tdocument.querySelector('.form-bg').style.backgroundColor = '#A4DCB4';\n\t\t}\n\t<\/script>\n\n\t<style>\n\t\tselect.custom-arrow+label {\n\t\t\tmargin-right: 1rem;\n\t\t}\n\n\t\t\/* Label black magic *\/\n\t\t\/* https:\/\/stackoverflow.com\/a\/69300547\/4907950 *\/\n\t\t\/* We need the label to move up top if the select is either focused, \n\t   has a value, or is invalid. In other words, we need it to not move up top\n\t   if there is no value and it's not invalid or focused, so on page load.\n\t   We can select if it's valid\/invalid\/focused with tailwind group selectors,\n\t   but we cannot select if it doesn't have a value without doing this hacky code.\n\t   We add an onchange in the select to set `data-empty` and then target labels sibling to that\n\t   with the same styles as in the label for `group-focus` and `group-valid` *\/\n\t\tselect[data-empty=\"false\"]+label {\n\t\t\tfont-size: 0.875rem;\n\t\t\theight: 50%;\n\t\t\ttransform: translateY(-100%);\n\t\t\tpadding-left: 0px;\n\t\t}\n\n\t\t\/* Autofill bg color *\/\n\t\t\/* https:\/\/stackoverflow.com\/a\/19426087\/4907950 *\/\n\t\t\/* We can't set it to transparent, so light green (same as the bg color)\n\t   is the next best thing. This unfortunately covers the smaller label,\n\t   but so does the default autofill style so this is nicer *\/\n\n\t\tinput:-webkit-autofill {\n\t\t\t-webkit-box-shadow: 0 0 0px 999px #A4DCB4 inset;\n\t\t}\n\n\t\t\/* Checkbox styles *\/\n\n\t\t\/* The checkbox container *\/\n\t\t.checkbox-container {\n\t\t\tdisplay: inline;\n\t\t\tposition: relative;\n\t\t\tcursor: pointer;\n\t\t\t-webkit-user-select: none;\n\t\t\t-moz-user-select: none;\n\t\t\t-ms-user-select: none;\n\t\t\tuser-select: none;\n\t\t\tmargin: auto;\n\t\t}\n\n\t\t\/* Hide the browser's default checkbox *\/\n\t\t.checkbox-container input {\n\t\t\topacity: 0;\n\t\t\theight: 0;\n\t\t\twidth: 0;\n\t\t}\n\n\t\t\/* Create a custom checkbox *\/\n\t\t.checkmark {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\tleft: 0;\n\t\t\theight: 1rem;\n\t\t\twidth: 1rem;\n\t\t}\n\n\t\t\/* Hide inside square *\/\n\t\t.checkbox-container input~.checkmark .checkbox-square {\n\t\t\tdisplay: none;\n\t\t}\n\n\t\t\/* Show inside square *\/\n\t\t.checkbox-container input:checked~.checkmark .checkbox-square {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t\/* Custom checkbox *\/\n\t\t.checkmark {\n\t\t\tcolor: #D4D0C8;\n\t\t\t\/* brown-300 *\/\n\t\t}\n\n\t\t\/* Hover color *\/\n\t\t.checkbox-container:hover input~.checkmark {\n\t\t\tbackground-color: #004C45;\n\t\t\t\/* green-700 *\/\n\t\t}\n\n\t\t\/* Focus visible *\/\n\t\t.checkbox-container input:focus-visible~.checkmark {\n\t\t\tcolor: #004C45;\n\t\t\t\/* green-700 *\/\n\t\t\tborder: 1px solid #004C45;\n\t\t\t\/* green-700 *\/\n\t\t}\n\n\t\t.legal-text a {\n\t\t\ttext-decoration: underline;\n\t\t}\n\n\t\t.legal-text a:hover {\n\t\t\tcolor: #D1565C;\n\t\t}\n\n\t\t.extra-info ul {\n\t\t\tlist-style: disc;\n\t\t\tlist-style-position: outside;\n\t\t\t\/* Align bullet to text on left *\/\n\t\t\tmargin-left: 1.2rem;\n\n\t\t\tmargin-top: 1rem;\n\t\t\tmargin-bottom: 1rem;\n\t\t}\n\t\t.extra-info ul li {\n\t\t\tmargin-top: 1rem;\n\t\t\tmargin-bottom: 1rem;\n\t\t}\n\n\t\t.extra-info ul li::marker {\n\t\t\tcolor: #A4DCB4;\n\t\t}\n\t<\/style>\n\n\t<div class=\"relative selection:bg-green-900\/50 text-brown-300\">\n\t\t<div class=\"form-bg absolute top-0 left-0 w-full h-[64rem] -z-10\"><\/div>\n\t\t<div id=\"loader\" class=\"hidden w-full h-full fixed items-center justify-center bg-green-900\/75 mx-auto my-auto z-20\" aria-label=\"loader\">\n\t\t\t<svg class=\"mx-auto my-16\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 100 100\" height=\"128px\" width=\"128px\" fill=\"#a4dcb4\">\n\t<circle cx=\"88\" cy=\"50\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.833s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"84.715\" cy=\"65.456\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.774s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"75.427\" cy=\"78.24\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.714s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"61.743\" cy=\"86.14\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.655s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"46.028\" cy=\"87.792\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.595s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"31\" cy=\"82.909\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.536s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"19.257\" cy=\"72.336\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.476s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"12.83\" cy=\"57.901\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.417s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"12.83\" cy=\"42.099\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.357s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"19.257\" cy=\"27.664\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.298s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"31\" cy=\"17.091\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.238s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"46.028\" cy=\"12.208\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.179s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"61.743\" cy=\"13.86\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.119s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"75.427\" cy=\"21.76\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"-0.06s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n\t<circle cx=\"84.715\" cy=\"34.544\" r=\"6\">\n\t\t<animate attributeName=\"r\" begin=\"0s\" dur=\".9\" repeatCount=\"indefinite\" values=\"3.6;3.6;6;3.6;3.6\" \/>\n\t<\/circle>\n<\/svg>\t\t<\/div>\n\t\t<div class=\"relative\">\n\t\t\t<div class=\"bg-green-900 absolute top-0 left-0 w-full h-full -z-20\"><\/div>\n\t\t\t<div class=\"section pb-16\">\n\t\t\t\t<div class=\"grid lg:grid-cols-2 gap-8 lg:gap-12 xl:gap-32 py-16\" x-data=\"{ tab: 1, industry: '', 'verificationtype': ''}\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"md:min-h-[585px]\">\n\t\t\t\t\t\t<input type=\"hidden\" id=\"wordpressLPID\" value=\"[WP] Mastering Document Verification\">\t\t\t\t\t\t\t<p class=\"text-green-900 p-sm subheading flex items-center mb-4\">\n\t\t\t\t\t\t\t\t<span class=\"w-1.5 h-1.5 bg-red-500 rounded-full mr-4\"><\/span>\n\t\t\t\t\t\t\t\tWhite Paper\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t<h1 class=\"h4  text-green-900\" >Mastering Document Verification: A Roadmap for Successful Customer Onboarding<\/h1>\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/03\/wp-mastering-doc-verification-thumbnail-1.jpg\" alt=\"Identity Document Verification\" class=\"lg:hidden object-contain w-full my-10 lg:my-0 lg:mb-16 aspect-[2400\/1370]\">\n\t\t\t\t\t\t<form class=\"lg:pt-8\" target=\"_top\" onSubmit=\"return false;\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h2 class=\"h6 md:mt-16  mb-12 text-green-500\">Learn More in the Report<\/h2>\n\t\t\t\t\t\t\t<input type=\"hidden\" id=\"thank-you-page\" value=\"https:\/\/www.trulioo.com\/lp\/thank-you-resource-request\">\t\t\t\t\t\t\t<div x-show=\"tab === 1\" class=\"flex flex-col justify-between h-full \">\n\t\t\t\t\t\t\t\t<div>\n\t\t\t\t\t\t\t\t\t<div class=\"grid gap-8\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"relative z-0\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"text\" id=\"FirstName\" class=\"block text-md font-normal py-2 px-0 w-full bg-transparent border-b invalid:border-red-100 border-brown-300 placeholder-green-900 outline-none appearance-none peer\" placeholder=\" \" \/>\n\t\t\t\t\t\t\t\t\t\t\t<label for=\"FirstName\" class=\"absolute text-md font-normal pl-1 duration-300 transform -translate-y-6 scale-75 top-2 -z-10 origin-[0] peer-focus:left-0 peer-focus:text-xs peer-focus:text-brown-300 peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 leading-none\">First Name*<\/label>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"p-xs md:p-xxs text-white invisible peer-invalid:visible peer-focus:invisible\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\tPlease enter a first name\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"relative z-0\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"text\" id=\"LastName\" class=\"block text-md font-normal py-2 px-0 w-full bg-transparent border-b invalid:border-red-100 border-brown-300 placeholder-green-900 outline-none appearance-none  peer\" placeholder=\" \" \/>\n\t\t\t\t\t\t\t\t\t\t\t<label for=\"LastName\" class=\"absolute text-md font-normal pl-1 duration-300 transform -translate-y-6 scale-75 top-2 -z-10 origin-[0] peer-focus:left-0 peer-focus:text-xs peer-focus:text-brown-300 peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 leading-none\">Last Name*<\/label>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"p-xs md:p-xxs text-white invisible peer-invalid:visible peer-focus:invisible\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\tPlease enter a last name\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"relative z-0\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"email\" id=\"Email\" class=\"block text-md font-normal py-2 px-0 w-full bg-transparent border-b invalid:border-red-100 focus:border-brown-300 border-brown-300 placeholder-green-900 outline-none appearance-none  peer\" placeholder=\" \" \/>\n\t\t\t\t\t\t\t\t\t\t\t<label for=\"Email\" class=\"absolute text-md font-normal pl-1 duration-300 transform -translate-y-6 scale-75 top-2 -z-10 origin-[0] peer-focus:left-0 peer-focus:text-xs peer-focus:text-brown-300 peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 leading-none\">Work Email Address*<\/label>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"p-xs md:p-xxs text-white invisible peer-invalid:visible peer-focus:invisible\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"email-error-message\">\n\t\t\t\t\t\t\t\t\t\t\t\t\tPlease enter a valid email\n\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"w-full relative group\">\n\t\t\t\t\t\t\t\t\t\t\t\t<select name=\"Industry\" id=\"Industry\" class=\"custom-arrow w-full text-md font-normal h-10 peer bg-transparent border-b invalid:border-red-100 border-brown-300 placeholder-green-900 outline-none\" x-model=\"industry\" onchange=\"this.dataset.empty = this.value == ''\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" disabled selected><\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Marketing\">Marketing<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Banking\">Banking<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Crypto\">Crypto<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Foreign Exchange\">Foreign Exchange<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Lending\">Lending<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Neobank\">Neobank<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Online Trading\">Online Trading<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Payments\">Payments<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Remittance\">Remittance<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Wealth Management\">Wealth Management<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Marketplace\/ Community\">Marketplace\/ Community<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Retail\/ e-Commerce\">Retail\/ e-Commerce<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Entertainment\">Entertainment<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Gambling\">Gambling<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Gaming\">Gaming<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Healthcare\">Healthcare<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Hospitality\/ Travel\">Hospitality\/ Travel<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Public Sector\">Public Sector<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<option class=\"bg-green-700 text-brown-300\" value=\"Other\">Other<\/option>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/select>\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"Industry\" class=\"transform transition-all absolute top-0 left-0 flex items-center pl-2 text-md font-normal peer-invalid:text-xs group-focus-within:text-xs peer-invalid:h-1\/2 group-focus-within:h-1\/2 peer-invalid:-translate-y-full group-focus-within:-translate-y-full peer-invalid:pl-0 group-focus-within:pl-0 leading-none\">Industry*<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"p-xs md:p-xxs text-white invisible peer-invalid:visible peer-focus:invisible\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\t\tPlease select industry\n\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"relative z-0\" x-show=\"industry === 'Other'\">\n\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"text\" id=\"Industry_Other__c\" class=\"block text-md font-normal py-2 px-0 w-full bg-transparent border-b invalid:border-red-100 border-brown-300 placeholder-green-900 outline-none appearance-none peer\" placeholder=\" \">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"Industry_Other__c\" class=\"absolute text-md font-normal pl-1 duration-300 transform -translate-y-6 scale-75 top-2 -z-10 origin-[0] peer-focus:left-0 peer-focus:text-xs peer-focus:text-brown-300 peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 leading-none\">Please specify other industry*<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"p-xs md:p-xxs text-white invisible peer-invalid:visible peer-focus:invisible\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\t\tPlease enter other industry\n\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<div class=\"col-span-full relative group z-0\">\n\t\t\t\t\t\t\t\t\t\t\t<input type=\"text\" id=\"Company\" class=\"block text-md font-normal py-2 px-0 w-full bg-transparent border-b invalid:border-red-100 border-brown-300 placeholder-green-900 outline-none appearance-none  peer\" placeholder=\" \" \/>\n\t\t\t\t\t\t\t\t\t\t\t<label for=\"Company\" class=\"absolute text-md font-normal pl-1 duration-300 transform -translate-y-6 scale-75 top-2 -z-10 origin-[0] peer-focus:left-0 peer-focus:text-xs peer-focus:text-brown-300 peer-placeholder-shown:scale-100 peer-placeholder-shown:translate-y-0 peer-focus:scale-75 peer-focus:-translate-y-6 leading-none\">Company Name*<\/label>\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"p-xs md:p-xxs text-white invisible peer-invalid:visible peer-focus:invisible\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\tPlease enter a company name\n\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"space-y-12 pt-4\">\n\t\t\t\t\t\t\t\t\t<div class=\"text-xs\">\n\t\t\t\t\t\t\t\t\t\t<div class=\"legal-text mb-4 lg:mb-3 max-w-xl\">\n\t\t\t\t\t\t\t\t\t\t\t<p>Per our privacy policy, we store information to improve your experience.<br \/>\nYou\u2019ll receive updates about related content and services. You can opt out at any time.<\/p>\n<p>&nbsp;<\/p>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t<label class=\"checkbox-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"text-md ml-8\">I agree to the privacy policy<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" id=\"privacy\" name=\"agreement\" \/>\n\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 16 16\" class=\"checkmark\">\n\t\t\t\t\t\t\t\t\t\t\t\t<path d=\"m0 0h16v16h-16z\" stroke=\"currentColor\" stroke-width=\"1\" fill=\"none\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<path class=\"checkbox-square\" d=\"m4,4h8v8h-8z\" stroke=\"currentColor\" stroke-width=\"1\" fill=\"currentColor\" \/>\n\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t<p id=\"checkbox-error-message\" style=\"display: none\" class=\"p-xs md:p-xxs text-white\">\n\t\t\t\t\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 48 48\" class=\"inline w-4 h-4 mr-1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<circle fill=\"#E47379\" cx=\"24\" cy=\"24\" r=\"22.7\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<path fill=\"#fff\" d=\"M22.1 11.9c0-1 .8-1.9 1.9-1.9s1.9.8 1.9 1.9v15.6c0 1-.9 1.9-1.9 1.9s-1.9-.8-1.9-1.9zM26.5 36a2.5 2.5 0 10-5 0 2.5 2.5 0 105 0\" \/>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t\t\t\t\t\t\tMust agree to privacy policy to continue\n\t\t\t\t\t\t\t\t\t\t\t<\/p>\n\t\t\t\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<button class=\"mt-8 lg:mt-0 btn-text-md border border-green-500 bg-green-500 text-green-900 hover:bg-green-300 hover:border-green-300\" @click=\"await submit(0) \">\n\t\t\t\t\t\t\t\t\t\tSubmit\t\t\t\t\t\t\t\t\t<\/button>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div>\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/03\/wp-mastering-doc-verification-thumbnail-1.jpg\" alt=\"Identity Document Verification\" class=\"hidden lg:block object-contain w-full mt-12 aspect-[2400\/1370]\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"p-lg text-white mt-20 lg:mt-12 xl:mt-16 extra-info\">\n\t\t\t\t\t\t\t\t<p>In today\u2019s digital economy, businesses turn to identity verification for security and compliance. But in an environment of increasing fraud, identity theft and regulations, more companies are prioritizing identity document verification to onboard the right customers.<br \/>\n&nbsp;<\/p>\n<p>The \u201cMastering Document Verification\u201d white paper provides insights to help businesses create a powerful verification process.<\/p>\n<p>&nbsp;<\/p>\n<p>The white paper explores strategies for building customized workflows and shows how a global identity platform with layered verification can enable agile customer onboarding worldwide.<\/p>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n\n\n\n<div class=\"w-full bg-white h-[40px] lg:h-[80px]\"><\/div>\n\n<div class=\"bg-white\"><div class=\"section\"><h3 class=\"h3 my-8 lg:mb-12 text-left md:text-center mx-auto text-green-900\">Gain Expert Insights in This Report<\/h3><\/div><\/div>\n\n\n<div class=\"bg-white\">\n    <div class=\"section\">\n        <div class=\"lg:grid lg:grid-cols-3 lg:gap-10\">\n                                <div class=\"pt-12 pb-8 border-t border-b border-green-900\">\n                                                    <p class=\"h1 mb-4 font-numerals text-[7rem] lg:text-[10rem] text-green-500\">\n\t\t\t\t\t\t\t\t01\t\t\t\t\t\t\t<\/p>\n                                                        <h6 class=\"h6 mb-3 lg:mb-4\" >Enhance Your Operations<\/h6>\n                            <div class=\"p-sm custom-typography\"><p>Leverage a global identity platform for streamlined document verification that drives operational growth and efficiency.<\/p>\n<\/div>\n                                                <\/div>\n                                    <div class=\"pt-12 pb-8 lg:border-t border-b border-green-900\">\n                                                    <p class=\"h1 mb-4 font-numerals text-[7rem] lg:text-[10rem] text-green-500\">\n\t\t\t\t\t\t\t\t02\t\t\t\t\t\t\t<\/p>\n                                                        <h6 class=\"h6 mb-3 lg:mb-4\" >Reach Company Goals<\/h6>\n                            <div class=\"p-sm custom-typography\"><p>Develop a verification strategy that prioritizes your business needs, including cost optimization, compliance and customer experience.<\/p>\n<\/div>\n                                                <\/div>\n                                    <div class=\"pt-12 pb-8 lg:border-t border-b border-green-900\">\n                                                    <p class=\"h1 mb-4 font-numerals text-[7rem] lg:text-[10rem] text-green-500\">\n\t\t\t\t\t\t\t\t03\t\t\t\t\t\t\t<\/p>\n                                                        <h6 class=\"h6 mb-3 lg:mb-4\" >Fortify Your Customer Base<\/h6>\n                            <div class=\"p-sm custom-typography\"><p>Learn about Trulioo Identity Document Verification and discover how it leverages biometrics and machine learning to verify your customers with certainty.<\/p>\n<\/div>\n                                                <\/div>\n                        <\/div>\n    <\/div>\n<\/div>\n\n\n\n<div class=\"w-full bg-white h-[80px] lg:h-[120px]\"><\/div>\n\n\n<div class=\"not-post bg-green-900\">\n\t<div class=\"p-10 md:p-20 lg:p-32 xl:p-52 section\">\n\t\t<div class=\"border-y border-green-900 py-10\">\n\n\t\t\t<div class=\"h1 font-numerals text-[12rem] select-none -mb-20 md:-mb-12 text-green-500\">&#8220;<\/div>\n\n\t\t\t<h3 class=\"h3 mb-4 leading-[1.3] max-w-fit text-green-500 text-left\" >Document verification can provide an extra layer of security when confirming an identity. When businesses apply that technique through a single, comprehensive verification workflow, they can close operational gaps with layered steps working together to create smooth, secure customer experiences.\u201d<\/h3>\t\t\t\t<div class=\"p-xs text-white\">\n\t\t\t\t\t\u2013 &#8220;Mastering Document Verification\u201d  White Paper\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\n\t\t\n\t<\/div>\n<\/div>\n\n\n<div class=\"w-full bg-white h-[40px] lg:h-[80px]\"><\/div>\n\n<div class=\"bg-white\"><div class=\"section\"><h3 class=\"h3 my-8 lg:mb-12 text-left md:text-center mx-auto text-green-900\">Trusted Across Industries<\/h3><\/div><\/div>\n\n<div class=\"bg-white\">\n    <div class=\"section py-20\">\n        <div class=\"grid grid-cols-2 lg:grid-cols-4 gap-4 xs:gap-10\">\n                                                <svg viewBox=\"0 0 120 120\" class=\"w-full mx-auto\">\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"fill-none stroke-white\"\n                            stroke-width=\"60\"\n                        ><\/circle>\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"stat stroke-green-500 origin-center -rotate-90\"\n                            stroke-width=\"60\"\n                            style=\"stroke-dasharray: 190; stroke-dashoffset: 190; transition: stroke-dashoffset 1s ease\"\n                        ><\/circle>\n                        <text\n                            x=\"50%\"\n                            y=\"50%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"h1 font-normal text-6xl fill-green-900\">\n                            195+                        <\/text>\n                        <text\n                            x=\"50%\"\n                            y=\"70%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"p subheading text-[0.45rem] fill-green-900\">\n                            Countries Covered                        <\/text>\n                    <\/svg>\n                                    <svg viewBox=\"0 0 120 120\" class=\"w-full mx-auto\">\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"fill-none stroke-white\"\n                            stroke-width=\"60\"\n                        ><\/circle>\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"stat stroke-green-500 origin-center -rotate-90\"\n                            stroke-width=\"60\"\n                            style=\"stroke-dasharray: 190; stroke-dashoffset: 190; transition: stroke-dashoffset 1s ease\"\n                        ><\/circle>\n                        <text\n                            x=\"50%\"\n                            y=\"50%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"h1 font-normal text-4xl fill-green-900\">\n                            13,000+                        <\/text>\n                        <text\n                            x=\"50%\"\n                            y=\"70%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"p subheading text-[0.45rem] fill-green-900\">\n                            Verifiable Identity Documents                        <\/text>\n                    <\/svg>\n                                    <svg viewBox=\"0 0 120 120\" class=\"w-full mx-auto\">\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"fill-none stroke-white\"\n                            stroke-width=\"60\"\n                        ><\/circle>\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"stat stroke-green-500 origin-center -rotate-90\"\n                            stroke-width=\"60\"\n                            style=\"stroke-dasharray: 190; stroke-dashoffset: 190; transition: stroke-dashoffset 1s ease\"\n                        ><\/circle>\n                        <text\n                            x=\"50%\"\n                            y=\"50%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"h1 font-normal text-6xl fill-green-900\">\n                            700M                        <\/text>\n                        <text\n                            x=\"50%\"\n                            y=\"70%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"p subheading text-[0.45rem] fill-green-900\">\n                            Verifiable Business Entities                        <\/text>\n                    <\/svg>\n                                    <svg viewBox=\"0 0 120 120\" class=\"w-full mx-auto\">\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"fill-none stroke-white\"\n                            stroke-width=\"60\"\n                        ><\/circle>\n                        <circle\n                            cx=\"60\"\n                            cy=\"60\"\n                            r=\"30\"\n                            fill=\"none\"\n                            class=\"stat stroke-green-500 origin-center -rotate-90\"\n                            stroke-width=\"60\"\n                            style=\"stroke-dasharray: 190; stroke-dashoffset: 190; transition: stroke-dashoffset 1s ease\"\n                        ><\/circle>\n                        <text\n                            x=\"50%\"\n                            y=\"50%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"h1 font-normal text-6xl fill-green-900\">\n                            450+                        <\/text>\n                        <text\n                            x=\"50%\"\n                            y=\"70%\"\n                            dominant-baseline=\"middle\"\n                            text-anchor=\"middle\"\n                            class=\"p subheading text-[0.45rem] fill-green-900\">\n                            Global Data Sources                        <\/text>\n                    <\/svg>\n                                    <\/div>\n    <\/div>\n<\/div>\n\n\n\n\n\n<div class=\"w-full bg-white h-[40px] lg:h-[80px]\"><\/div>\n\n\n<div class=\"section\">\n            <div class=\"flex flex-wrap gap-x-10 gap-y-5\">\n            \t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/08\/logo-binance-188x80.png\" width=\"188\" height=\"80\" itemprop=\"image\" alt=\"\" class=\"h-16 lg:h-20 mx-auto\">\n\t\t\t\t\n            \t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/08\/logo-stack-188x80.png\" width=\"188\" height=\"80\" itemprop=\"image\" alt=\"\" class=\"h-16 lg:h-20 mx-auto\">\n\t\t\t\t\n            \t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/08\/logo-nimu-188x80.png\" width=\"188\" height=\"80\" itemprop=\"image\" alt=\"\" class=\"h-16 lg:h-20 mx-auto\">\n\t\t\t\t\n            \t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/08\/logo-ig-188x80.png\" width=\"188\" height=\"80\" itemprop=\"image\" alt=\"\" class=\"h-16 lg:h-20 mx-auto\">\n\t\t\t\t\n            \t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/08\/webull-logo_720-188x80.png\" width=\"188\" height=\"80\" itemprop=\"image\" alt=\"\" class=\"h-16 lg:h-20 mx-auto\">\n\t\t\t\t\n                    <\/div>\n        <\/div>\n\n\n<div class=\"w-full bg-white h-[40px] lg:h-[80px]\"><\/div>\n\n\n<div class=\"not-post bg-green-700 text-white\">\n    <div class=\"section pt-24 pb-24 lg:pt-28 lg:pb-32 text-center\">\n        <div class=\"w-12 h-[2px] bg-red-500 mx-auto mb-10\"><\/div> \n        <h4 class=\"h4 lg:h3 mx-auto mb-4\" >Our Experts Are Here to Get You Started<\/h4>        \n                    <p class=\"p-xl lg:p-xxl mb-12 lg:mb-18 mx-auto\">Speak with an identity expert to learn how to accelerate onboarding and enhance identity document verification.<\/p>\n                <a href=\"https:\/\/www.trulioo.com\/lp\/book-a-demo\"  class=\"inline-block btn-text-md border border-green-500 bg-green-500 text-green-900 hover:bg-green-300 hover:border-green-300\"  rel=\"noopener noreferrer\" target=\"_blank\" >Book a demo<\/a>    <\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"In an environment of increasing fraud and regulations, more companies are prioritizing identity document verification to onboard the right customers. Explore strategies for creating a powerful verification process and learn how a global identity platform with layered verification can enable agile customer onboarding worldwide.","protected":false},"author":7,"featured_media":32360,"template":"","meta":{"_acf_changed":false,"om_disable_all_campaigns":false},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.1 (Yoast SEO v22.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Mastering Document Verification | Trulioo<\/title>\n<meta name=\"description\" content=\"Read the White Paper: Gain insights that help businesses create a powerful identity verification process and a roadmap for successful customer onboarding.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mastering Document Verification | Trulioo\" \/>\n<meta property=\"og:description\" content=\"Read the White Paper: Gain insights that help businesses create a powerful identity verification process and a roadmap for successful customer onboarding.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification\" \/>\n<meta property=\"og:site_name\" content=\"Trulioo\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/trulioo\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-23T16:34:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/03\/wp-mastering-doc-verification-thumbnail-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2400\" \/>\n\t<meta property=\"og:image:height\" content=\"1370\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@trulioo\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification\",\"url\":\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification\",\"name\":\"Mastering Document Verification | Trulioo\",\"isPartOf\":{\"@id\":\"https:\/\/www.trulioo.com\/#website\"},\"datePublished\":\"2024-01-18T18:31:04+00:00\",\"dateModified\":\"2024-02-23T16:34:08+00:00\",\"description\":\"Read the White Paper: Gain insights that help businesses create a powerful identity verification process and a roadmap for successful customer onboarding.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.trulioo.com\/lp\/mastering-document-verification#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.trulioo.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[WP] Mastering Document Verification\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.trulioo.com\/#website\",\"url\":\"https:\/\/www.trulioo.com\/\",\"name\":\"Trulioo\",\"description\":\"Building trust online (online identity verification services)\",\"publisher\":{\"@id\":\"https:\/\/www.trulioo.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.trulioo.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.trulioo.com\/#organization\",\"name\":\"Trulioo\",\"url\":\"https:\/\/www.trulioo.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.trulioo.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/01\/Trulioo-Wordmark-Dark-Green.png\",\"contentUrl\":\"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/01\/Trulioo-Wordmark-Dark-Green.png\",\"width\":2784,\"height\":1464,\"caption\":\"Trulioo\"},\"image\":{\"@id\":\"https:\/\/www.trulioo.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/trulioo\",\"https:\/\/twitter.com\/trulioo\",\"https:\/\/www.linkedin.com\/company\/trulioo\",\"https:\/\/www.instagram.com\/trulioo_global\/\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Mastering Document Verification | Trulioo","description":"Read the White Paper: Gain insights that help businesses create a powerful identity verification process and a roadmap for successful customer onboarding.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification","og_locale":"en_US","og_type":"article","og_title":"Mastering Document Verification | Trulioo","og_description":"Read the White Paper: Gain insights that help businesses create a powerful identity verification process and a roadmap for successful customer onboarding.","og_url":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification","og_site_name":"Trulioo","article_publisher":"https:\/\/www.facebook.com\/trulioo","article_modified_time":"2024-02-23T16:34:08+00:00","og_image":[{"width":2400,"height":1370,"url":"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/03\/wp-mastering-doc-verification-thumbnail-1.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_site":"@trulioo","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification","url":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification","name":"Mastering Document Verification | Trulioo","isPartOf":{"@id":"https:\/\/www.trulioo.com\/#website"},"datePublished":"2024-01-18T18:31:04+00:00","dateModified":"2024-02-23T16:34:08+00:00","description":"Read the White Paper: Gain insights that help businesses create a powerful identity verification process and a roadmap for successful customer onboarding.","breadcrumb":{"@id":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.trulioo.com\/lp\/mastering-document-verification"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.trulioo.com\/lp\/mastering-document-verification#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.trulioo.com\/"},{"@type":"ListItem","position":2,"name":"[WP] Mastering Document Verification"}]},{"@type":"WebSite","@id":"https:\/\/www.trulioo.com\/#website","url":"https:\/\/www.trulioo.com\/","name":"Trulioo","description":"Building trust online (online identity verification services)","publisher":{"@id":"https:\/\/www.trulioo.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.trulioo.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.trulioo.com\/#organization","name":"Trulioo","url":"https:\/\/www.trulioo.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.trulioo.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/01\/Trulioo-Wordmark-Dark-Green.png","contentUrl":"https:\/\/www.trulioo.com\/wp-content\/uploads\/2023\/01\/Trulioo-Wordmark-Dark-Green.png","width":2784,"height":1464,"caption":"Trulioo"},"image":{"@id":"https:\/\/www.trulioo.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/trulioo","https:\/\/twitter.com\/trulioo","https:\/\/www.linkedin.com\/company\/trulioo","https:\/\/www.instagram.com\/trulioo_global\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/landing-pages\/39278"}],"collection":[{"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/landing-pages"}],"about":[{"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/types\/landing-pages"}],"author":[{"embeddable":true,"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/users\/7"}],"version-history":[{"count":2,"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/landing-pages\/39278\/revisions"}],"predecessor-version":[{"id":41460,"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/landing-pages\/39278\/revisions\/41460"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/media\/32360"}],"wp:attachment":[{"href":"https:\/\/www.trulioo.com\/wp-json\/wp\/v2\/media?parent=39278"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}