3.8 REVOKE_USER_CONSENT_FOR_ALL Procedure

This procedure removes the AI user preference storing the usage consent for all users.

Syntax

APEX_AI.REVOKE_USER_CONSENT_FOR_ALL (
    p_application_id    IN  NUMBER )

Parameters

Parameter Description
p_application_id The application ID.

Example

BEGIN
  apex_ai.revoke_user_consent_for_all(
    p_application_id => 100);
END;