managedConsentCMPFinished

Overview

Notifies that the used CMP has finished updating consent.

Data passed by the event

state

Takes the following values:

  • unknown - No information about consent state.

  • withheld - Consent has been declined by the user.

  • custom - Partial consent has been granted by the user - at least some purposes and some vendors were given consent.

  • obtained - Full consent has been granted by the user.

Examples

document.addEventListener('managedConsentCMPFinished', (data: any) => {
  console.log('managedConsentCMPFinished state: ' + data.state);
});

Last updated