Changes to Consent parameters

At any time during their experience on your site, a visitor may set preferences for the first time or may change their preferences using your CMP. Once Visitor JS has been initialized with initial settings, the visitor’s permissions can be changed using the following functions:

adobe.optIn.approve(categories, shouldWaitForComplete)

Function that approves, or opts the visitor in to all categories in a list. For more information on the shouldWaitForComplete parameter, see Opt-in Workflow.

adobe.optIn.deny(categories, shouldWaitForComplete)

Function that denies, or opts the visitor out of all categories specified.

adobe.optIn.approveAll():

If your request for permission for your site to create is phrased such that a visitor blanket grants or denies permission for your site to create cookies, use approveAll() or denyAll(), relative to their response.

adobe.optIn.denyAll():

If your request for permission for your site to create is phrased such that a visitor blanket grants or denies permission for your site to create cookies, use approveAll() or denyAll(), relative to the response.

Opt-in Workflows parameters

Opt-in supports a workflow where permissions can be collected over more than one request cycle, such as where preferences are given one at a time. Using the following functions and providing true for shouldWaitForComplete setting, your solution is able to collect consent for one solution or a subset of the total categories, then collect consent for the next one or subset of categories. Beginning on the first call, the adobe.optIn.status property will be pending until adobe.optIn.complete() is called at the end of the flow. Once called, the status is set to Complete.

adobe.optIn.approve(categories, shouldWaitForComplete)

Function that approves, or opts the visitor in to all categories in a list.

adobe.optIn.deny(categories, shouldWaitForComplete)

Function that denies, or opts the visitor out of all categories specified.

adobe.optIn.complete()

Function that triggers the aggregation of the proceeding calls to approve() and deny() into one request to set a visitor’s preferences. When subscribing to Opt-in changes (see adobe.optIn.fetchPermissions(callback, shouldAutoSubscribe) below, your callback is triggered only when this function is called.

Visitor Opt-in Permissions parameters

Collect Opt-in permissions for a visitor at any time using one of the permissions functions:

adobe.optIn.permissions

An object listing all Experience Cloud solutions, as categories, that have been granted or denied by the visitor.

adobe.optIn.isApproved(categories)

If all categories have been approved, this function will return true.

adobe.optIn.fetchPermissions(callback, shouldAutoSubscribe)

Retrieve the list of permissions asynchronously. The callback is called with the list of permissions, once the permissions granting / denying process is complete. Providing a value of true for shouldAutoSubscribe registers the callback for any Opt-in changes going forward. The following are properties of adobe.OptIn:

permissions

An object listing all Experience Cloud solutions, as categories, that have been granted or denied by the visitor Example: { aa: true, ecid: false, aam: true... }

status

  • pending
  • changed
  • complete

doesOptInApply

True or false, representing the configuration you provided in initialization

isPending

True or false, depending on status value. Opt-in reports true for this property for a visitor who has not yet explicitly accepted or denied permission

isComplete

True or false depending on status value. Opt-in might report a false for this property when a workflow-style consent has started but not completed.