Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,8 @@ The Parrable ID system enables a publisher to configure lists of **allowed** tim
- An impression from a browser that matches any allowed timezone or timezone offset, but does not match a blocked timezone or timezone offset will engage in the Parrable ID syncronization process.
- If a browser has a stored Parrable ID then it will not be filtered even if the browser is in a timezone or timezone offset that is blocked.

All configured timezones should follow the `TZ database name` column from the [IANA tz database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)

#### Parrable ID Examples

{% highlight javascript %}
Expand All @@ -840,6 +842,9 @@ pbjs.setConfig({
name: `'parrableId'`,
params: {
partner: `'30182847-e426-4ff9-b2b5-9ca1324ea09b'` // change to the Parrable Partner Client ID(s) you received from the Parrable Partners you are using
timezoneFilter: {
allowedZones: ['America/New_York', 'Europe/Madrid']
}
}
}],
syncDelay: 1000
Expand Down