6.10 LOGOUT Procedure
This procedure closes the session and redirects to the application's home page. Call this procedure directly from the browser.
Syntax
APEX_AUTHENTICATION.LOGOUT ( 
    p_session_id IN NUMBER, 
    p_app_id IN NUMBER, 
    p_ws_app_id IN NUMBER DEFAULT NULL );Parameters
Table 6-5 APEX_AUTHENTICATION.LOGOUT Procedure Parameters
| Parameters | Description | 
|---|---|
| 
 | The Application Express session identifier of the session to close. | 
| 
 | The database application identifier. | 
| 
 | The websheet application identifier. | 
Example
This example logs the session out.
apex_authentication.logout(:SESSION, :APP_ID);Parent topic: APEX_AUTHENTICATION