Skip to main content
This area covers all actions used to control test mode. They allow you to enable, disable or toggle the test mode within the system.

actions.testMode* - Test mode

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": {
      ...
      "testModeChange": {...},
      "testModeOff": {...},
      "testModeOn": {...},
      ...
    }
}

Action overview

ActionDescription
testModeOnDefines the error messages output for requests to enable test mode.
testModeOffDefines the error message output for requests to disable test mode.
testModeChangeDefines the error messages output for requests to change the test mode.

actions.testModeChange - Change test mode

The testModeChange action controls the error messages for requests to change the test mode.

Example configuration

{
  "errorCodes": {
    "notAllowed": "<Textbaustein>"
  }
}

Parameter overview

ParameterTypeDescription
errorCodesarrayConfigures the error codes used for problems during the action.
notAllowedstringError message output when changing the test mode is not allowed in the current context.

actions.testModeOff - Disable / turn off test mode

The testModeOff action controls the error messages for requests to disable the test mode.

Example configuration

{
  "errorCodes": {
    "notAllowed": "<Textbaustein>"
  }
}

Parameter overview

ParameterTypeDescription
errorCodesarrayConfigures the error codes used for problems during the action.
notAllowedstringError message output when disabling the test mode is not allowed in the current context.

actions.testModeOn - Enable / turn on test mode

The testModeOn action controls the error messages for requests to enable the test mode.

Example configuration actions.testModeOn

{
  "errorCodes": {
    "noPassword": "<Textbaustein>",
    "invalidPassword": "<Textbaustein>"
  }
}

Parameter overview

ParameterTypeDescription
errorCodesarrayConfigures the error codes used for problems during the action.
noPasswordstringError message output when no password has been supplied.

invalidPasswordstringError message output when the supplied password is invalid.