Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

PropertyRequiredTypeDescription
apiKeyNostringProvided by PRIVO Admin.
siteIdentifierYesstringProvided by PRIVO Admin.
displayModeYesstringPossible values: popup, redirect

Sample request:

function showPrivoModule() {
    var verify_config = {
        apiKey: '(apikey)',
        siteIdentifier: '(siteIdentifier)',
        displayMode: 'redirect',
    }
    var profile = {
        partnerDefinedUniqueID: '(some_identifier)'
    }
    privo.verify.showVerify(profile, verify_config);
}