Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.quepass.com/llms.txt

Use this file to discover all available pages before exploring further.

Use Quepass.capture to start the verification flow based on your required configuration — face only, document only, or document followed by face. Always validate success and safely handle errors before using the returned data.

Code

Quepass.capture(configuration: [.document, .face]) { success, output in 

    guard success, let data = output.data else { 

        if let e = output.errors?.first { 

            print(e.message, e.details) 

        } 

        return 

    } 

} 

ConfigurationTypical use
[.face]Face only.
[.document]Document-only path (passport-oriented in current implementation).
[.document, .face]Document then face.