SOLVED

Re: Munchkin Tracking Cookie Length

Go to solution
Logan_Brown
Level 1

Munchkin Tracking Cookie Expiration Time

Hello, 

We use Marketo's Munchkin Tracking and have a customer that has requested that we don't store any cookies for longer than 6 months.  Is it possible to adjust the lifespan of the Munchkin Tracking Script from 2 years to 6 months, or even apply settings to specific IPs or sets of users? We have never had a customer request this before so unsure how to handle it.

Tags (2)
1 ACCEPTED SOLUTION

Accepted Solutions
Darshil_Shah1
Level 10 - Community Advisor

Re: Munchkin Tracking Cookie Length

Yes, you can set the cookieLifeDays property in the munckin.init function to set the expiry date of any newly created Munchkin tracking cookies to the required number of days in the future.

 Munchkin.init("AAA-BBB-CCC", {
        "cookieLifeDays":"180"
    }
);

View solution in original post

1 REPLY 1
Darshil_Shah1
Level 10 - Community Advisor

Re: Munchkin Tracking Cookie Length

Yes, you can set the cookieLifeDays property in the munckin.init function to set the expiry date of any newly created Munchkin tracking cookies to the required number of days in the future.

 Munchkin.init("AAA-BBB-CCC", {
        "cookieLifeDays":"180"
    }
);