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.

1. Session Handling

Use the Quepass SDK’s session-handling methods to check for expired sessions with isSessionExpired() and re-initialize the SDK using reInitialize() when needed.

Required Parameters

  • Empty

Return Parameters

  • Empty

Code Example

if (KycSdk.isSessionExpired()) { 
    KycSdk.reInitialize() 
} 

2. Close SDK

Call Quepass.clearSession() to properly terminate the SDK process when required.

Required Parameters

  • Empty

Return Parameters

  • Empty

Code Example

await Quepass.clearSession();