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 QuepassBuilder to start the verification flow based on the required FunctionType (FACE, DOCUMENT, or DOCUMENT_FACE). Configure the desired capture type, handle the SDK response inside sdkGeneralHandler, and then call Launcher.launch(builder, context) to begin the verification process.

Code

val builder = QuepassBuilder.builder() 
     .functionType(FunctionType.FACE) 
     .sdkGeneralHandler { response -> 
         if (response.code == 200) { 
             val base64 = response.data?.jsonObject 
                 ?.get("data")?.jsonPrimitive?.content 
         } 
     } 
     .build() 
 
Launcher.launch(builder, context) 

Function TypeTypical use
FunctionType.FACEFace only.
FunctionType.DOCUMENTDocument-only path (passport-oriented in current implementation).
FunctionType. DOCUMENT_FACEDocument then face.