Skip to main content
This page contains all actions related to security and data protection in the shop. This includes messages and notifications around session control and the consent layer for managing consents.

Overview of actions

The actions listed here are grouped thematically to provide a clear overview of the associated error messages and email templates. Actions that thematically belong to a different area can be found in the corresponding sections of this documentation or in the alphabetical overview of actions.

Excerpt of the basic actions structure

{
    "actions": {
      ...
      "sessionUnlock": {...},
      "sessionUpdate": {...},
      "consentChange": {...},
      ...
    }
}

Action overview

ActionDescription
sessionUnlockControls whether unlocking a session is possible.
sessionUpdateControls whether updating a session is possible.
consentChangeControls whether changing a consent is available.

actions.session* - Shop session

actions.sessionUnlock - Unlock session

The sessionUnlock action controls whether the user can unlock a session or not.

Example configuration actions.sessionUnlock

{
  "active": true
}

Parameter overview

ParameterTypeDescription
activeboolEnables/disables the sessionUnlock action.
If false, unlocking the session via this action is not available.
Default: true

actions.sessionUpdate - Update session data

The sessionUpdate action controls whether updating a session is possible.

Example configuration actions.sessionUpdate

{
  "active": true
}

Parameter overview

ParameterTypeDescription
activeboolEnables/disables the sessionUpdate action.
If false, updating the session via this action is not available.
Default: true

The consentChange action controls whether changing a consent is possible. The basic settings for the consent layer — for example groupings, categories and definitions of services requiring consent — are configured in the general.consentCookie* configuration section.

Example configuration actions.consentChange

{
  "active": true
}

Parameter overview

ParameterTypeDescription
activeboolEnables/disables the consentChange action.
If false, changing the consent via this action is not available.
Default: true