3.7 REVOKE_USER_CONSENT Procedure

This procedure removes the AI user preference storing the usage consent.

Syntax

APEX_AI.REVOKE_USER_CONSENT (
    p_user_name         IN  VARCHAR2,
    p_application_id    IN  NUMBER )

Parameters

Parameter Description
p_user_name The username.
p_application_id The application ID.

Example

BEGIN
  apex_ai.revoke_user_consent(
    p_user_name      => 'STIGER',
    p_application_id => 100);
END;