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 Quepass.isSessionTimedOut() to determine whether the current session has expired. If the session is timed out, the SDK should be re-initialized before making additional requests.

Required Parameters

  • Empty

Return Parameters

  • Empty

Code Example

    if Quepass.isSessionTimedOut() {    
        // Re-initialize SDK    
    }    

2. Close SDK

Call Quepass.closeSDKProcess() to properly close and terminate the SDK process when needed.

Required Parameters

  • Empty

Return Parameters

  • Empty

Code Example

Quepass.closeSDKProcess()