Channel
Details how to capture the channel context parameter in Teneo.
Leopard sends channel=webview
to Teneo along with every request. You will want to define a global variable in Teneo and populate it based off the value of this request parameter.
if (engineEnvironment.getParameter("channel")) {
channel = engineEnvironment.getParameter("channel")
}
Last updated