session
    • 1 Minute to read
    • Dark
      Light

    session

    • Dark
      Light

    Article summary

    Overview

    Value

    Description

    Data type

    Default value

    Required

    Where to analyze

    Request Parameter

    loginStatus

    Pass the user login status here. If you send it multiple times in a session, only the last status will be saved.

    String


    -

    Visitors > Session Parameters

    cs800

    parameter

    Use parameters to add additional information to a visit. Find details below.

    Object


    -

    Visitors > Session Parameters or metric

    cs[ID]

    Further information

    parameter

    Before use, parameters must be set up under Mapp Q3 > Configuration > Custom Parameters > Session Parameter. The ID and data type (text/number) are defined for each parameter during setup.

    If the value for the parameter is transmitted during a visit several times, only the first or last value is evaluated based on the configuration. Find more info here.

    Example (parameter with ID "1"): {1:"group-A"}

    Implementation Example

    import { WebtrekkSmartPixelReact, WebtrekkSessionData } from "@webtrekk-smart-pixel/react";
    import { WebtrekkSmartPixelReact, WebtrekkSessionData } from "@webtrekk-smart-pixel/next";

    If you do not have automatic page tracking enabled, invoke the track method after adding all relevant tracking information.

    WebtrekkSmartPixelReact.session({
         loginStatus: "login",
         parameter: {5: "male"}
    });

    If you do not have automatic page tracking enabled, invoke the track method after adding all relevant tracking information.

    render()
    {
        return (
            <div>
                <WebtrekkSessionData
                    loginStatus="login"
                    parameter={ {5: "male"} }
                />
            </div>
        );
    }


    Was this article helpful?

    What's Next