About TAPID cookies
This document explains what the TAPID cookie is and how the Tealium platform uses it.
How it works
TAPID is an HTTP-only browser cookie. It was originally designed to facilitate cross-domain identification, and it stores the anonymous ID that Tealium’s server-side products use, such as AudienceStream.
If a visitor’s computer doesn’t already have a TAPID cookie set on the Collect Tag target domain, the domain will generate one based on the Collect Tag payload.
The TAPID cookie’s value is set to that user’s visitor ID. This value normally comes from the client device. TAPID stores the value in a concatenated list of values for the accounts and profiles that a user’s device has visited, using the following format:
account-1/profile-1>visitor_id_value-1|account-2/profile-2>visitor_id_value-2
TAPID is usually a third-party cookie, but with first-party domains it can be a first-party cookie.
Once set, the visitor_id_value
in the cookie does not usually change.
Account and profile values in TAPID
To find the account and profile values for a TAPID cookie on a web page, perform the following steps:
- In your browser, open a web page that loads a Tealium Collect tag.
- Open the browser developer console.
- Filter Network requests for
teal
. - Refresh the page.
- Find the collect tag reference (either
i.gif
or/event
). - Examine the request header to determine the target account and profile.
- Examine the response to see the TAPID cookie value.
- Extract the part of the TAPID cookie that relates to the account and profile.
Identity resolution
AudienceStream determines the visitor profile ID based on the following order:
- The TAPID cookie, also called
tealium_thirdparty_visitor_id
. - The
tealium_visitor_id
event attribute. - The
utag_main v_id cookie
, also calledtealium_firstparty_visitor_id
.
AudienceStream always uses the TAPID identifier as the primary identifier if it is present in an incoming request. If a user is tracked across two domains, AudienceStream does not use the second domain’s first party cookie to identify the user. Therefore, you cannot look up the user based on the second domain’s first party cookie in AudienceStream.
Visitor stitching issues
A visitor’s profile data can be contaminated if multiple visitors use a device, such as a shared smart television or a public kiosk. If a second user logs in to that device with an anonymous cookie, AudienceStream continues to log activity to the first user. Traffic from all the anonymous users on a device are logged to the first user in the TAPID cookie.
For more information, see Visitor Switching.
Browser support
As browser support for third-party cookies continues to decline, the ability to track users anonymously across domains is becoming more difficult. With Visitor Stitching, AudienceStream can resolve a user across two or more domains when that user identifies themselves in the data layer.
First-party domains and TAPID
First-party domains allow Tealium services to use first-party requests, which can reduce data loss caused by ad blockers and similar technology.
The first-party domain is the domain that hosts the website the user is visiting. A third-party domain is any domain that does not match the current website’s domain.
When you use first-party domains, the TAPID cookie remains an HTTP-only browser cookie, but it is assigned to the first-party domain that hosts your website instead of Tealium’s third-party domain. Therefore, first-party domains cause the TAPID cookie to lose its cross-domain tracking functionality.
For more information, see About First-Party Domains.
Change the TAPID cookie data
The API request contains 3 parameters that allow you to change the value of the TAPID cookie. These parameters only affect the account and profile value in TAPID related to the current incoming API request. It does not change any other account and profile values.
The parameters support the following endpoints:
i.gif
- Tealium Collect tag/event
- HTTP APIvdata
- Visitor Data Enrichment
Parameter | Type | Actions | Notes |
---|---|---|---|
tealium_override_tapid |
String |
|
This parameter enables visitor switching based on the last known user, while retaining a TAPID for cross-domain tracking. |
tealium_delete_3rd_party_vid_cookies |
Boolean |
|
|
tealium_skip_3rd_party_vid_cookies |
Boolean | AudienceStream and server-side products ignores the TAPID values for this event. |
The parameters affect only the current event. For example, if you pass the skip
parameter on one event and not the next, the next event does not skip the TAPID cookie. However, you can set the override
parameter once and the TAPID changes to the value you specify.
Examples
The following examples demonstrate how the three parameters change TAPID data.
Override
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_override_tapid": "user"
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie (overridden): Only for i.gif
and vdata
, not /event
TAPID=tealium/alt>user|tealium/main>12345|;
Event
{
"visitorId": "user", // Overridden
"firstPartyCookieId": "user@tealium.com",
"thirdPartyCookieId": "user" // Overridden
}
Skip
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_skip_3rd_party_vid_cookies": true
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie: Only for i.gif
and vdata
, not /event
TAPID=tealium/alt>67890|tealium/main>12345|;
Event
{
"visitorId": "user@tealium.com", // TAPID skipped
"firstPartyCookieId": "user@tealium.com",
"thirdPartyCookieId": "67890"
}
Delete
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_delete_3rd_party_vid_cookies": true
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie (reset): Only for i.gif
and vdata
, not /event
TAPID=tealium/main>12345|;
If TAPID is empty after removing account/profile
part of TAPID, set-cookie maxAge=0
returned to delete cookie from client altogether. Only for i.gif
and vdata
, not /event
Event
{
"visitorId": "user@tealium.com",
"firstPartyCookieId": "user@tealium.com"
}
Override & Skip
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_override_tapid": "user",
"tealium_skip_3rd_party_vid_cookies": true
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie (overridden): Only for i.gif
and vdata
, not /event
TAPID=tealium/alt>user|tealium/main>12345|;
Event
{
"visitorId": "user@tealium.com", // TAPID Skipped
"firstPartyCookieId": "user@tealium.com",
"thirdPartyCookieId": "user" // Overridden
}
Override & Delete
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_override_tapid": "user",
"tealium_delete_3rd_party_vid_cookies": true
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie: Only for i.gif
and vdata
, not /event
TAPID=tealium/alt>user|tealium/main>12345|;
tealium_override_tapid
has priority over tealium_delete_3rd_party_vid_cookies
Event
{
"visitorId": "user",
"firstPartyCookieId": "user@tealium.com",
"thirdPartyCookieId": "user" // Overridden
}
Skip & Delete
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_skip_3rd_party_vid_cookies": true,
"tealium_delete_3rd_party_vid_cookies": true
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie (reset): Only for i.gif
and vdata
, not /event
TAPID=tealium/main>12345|;
If TAPID is empty after removing account/profile
part of TAPID, set-cookie maxAge=0
returned to delete cookie from client altogether. Only for i.gif
and vdata
, not /event
Event
{
"visitorId": "user@tealium.com", // TAPID deleted and anyway skipped
"firstPartyCookieId": "user@tealium.com"
}
Override, Skip, & Delete
Request
Body:
{
"tealium_account": "tealium",
"tealium_profile": "alt",
"tealium_visitor_id": "user@tealium.com",
"tealium_override_tapid": "user",
"tealium_skip_3rd_party_vid_cookies": true,
"tealium_delete_3rd_party_vid_cookies": true
}
Cookie:
TAPID=tealium/main>12345|tealium/alt>67890|;
Response
Set Cookie: Only for i.gif
and vdata
, not /event
TAPID=tealium/alt>user|tealium/main>12345|;
tealium_override_tapid
has priority over tealium_delete_3rd_party_vid_cookies
Event
{
"visitorId": "user@tealium.com", // TAPID Skipped
"firstPartyCookieId": "user@tealium.com",
"thirdPartyCookieId": "user" // Overridden
}
This page was last updated: October 9, 2023