7.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 7-5 LOGOUT Parameters

Parameters Description
p_session_id The Oracle APEX session identifier of the session to close.
p_app_id The database application identifier.
p_ws_app_id The websheet application identifier.

Example

This example logs the session out.

apex_authentication.logout(:SESSION, :APP_ID);