Skip to content

Cookies and storage

This article describes the different cookies used by the Braze Web SDK.

Before reading on, note that the Braze Web SDK will not store any data in the browser (cookies or otherwise) until your website initializes the SDK.

Additionally, these values are subject to change and should not be accessed directly through your integration. Instead, see our JavaScript documentation for our public API interfaces.

Cookies

This section provides information on how cookies in the Braze Web SDK can be set and managed. The Braze Web SDK is built to provide you with maximum flexibility, legal compliance, and messaging relevance.

When Braze creates cookies, they are stored with a 400-day expiration that automatically renews on new sessions.

Disabling cookies

To disable all cookies, use the noCookies option when initializing the Web SDK. Disabling cookies will prevent you from associating anonymous users who navigate across sub-domains and will result in a new user on each subdomain.

1
2
3
4
5
import * as braze from"@braze/web-sdk";
braze.initialize("API-KEY", {
    baseUrl: "BASE-URL",
    noCookies: true
});

To stop Braze tracking in general, or to clear all stored browser data, see the disableSDK and wipeData SDK methods, respectively. These two methods can be useful should a user revoke consent or you want to stop all Braze functionality after the SDK has already been initialized.

List of cookies

Device properties

By default, Braze will collect the following device-level properties to allow device, language, and time zone based message personalization:

  • BROWSER
  • BROWSER_VERSION
  • LANGUAGE
  • OS
  • RESOLUTION
  • TIME_ZONE
  • USER_AGENT

You can disable or specify the properties you wish to collect by setting the devicePropertyAllowlist initialization option to a list of DeviceProperties.

1
2
3
4
5
import * as braze from"@braze/web-sdk";
braze.initialize("API-KEY", {
    baseUrl: "BASE-URL",
    devicePropertyAllowlist: [ braze.DeviceProperties.LANGUAGE ] // list of `DeviceProperties` you want to collect
});

By default, all fields are enabled. Note that without some properties, not all features will function properly. For instance, local time zone delivery will not function without the time zone.

To read more about the automatically collected device properties, visit SDK data collection options.

HOW HELPFUL WAS THIS PAGE?
New Stuff!