Skip to content

Commit

Permalink
PPTT-4249 New settings for better identifiers management
Browse files Browse the repository at this point in the history
  • Loading branch information
wronan committed Oct 16, 2023
1 parent 7f19254 commit 794aa47
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions platform/authorized_api/tracker_settings/public_v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,8 @@ components:
- strip_site_search_query_parameters
- tracking_fingerprint_disabled
- trust_visitors_cookies
- use_session_hash
- use_anonymous_session_hash
- url_query_parameter_to_exclude_from_url
- urls
responses:
Expand Down Expand Up @@ -314,6 +316,10 @@ components:
$ref: '#/components/schemas/TrackingFingerprintDisabled'
trust_visitors_cookies:
$ref: '#/components/schemas/TrustVisitorsCookies'
use_session_hash:
$ref: '#/components/schemas/UseSessionHash'
use_anonymous_session_hash:
$ref: '#/components/schemas/UseAnonymousSessionHash'
url_query_parameter_to_exclude_from_url:
$ref: '#/components/schemas/UrlQueryParameterToExcludeFromUrl'
urls:
Expand Down Expand Up @@ -390,6 +396,10 @@ components:
$ref: '#/components/schemas/TrackingFingerprintDisabled'
trust_visitors_cookies:
$ref: '#/components/schemas/TrustVisitorsCookies'
use_session_hash:
$ref: '#/components/schemas/UseSessionHash'
use_anonymous_session_hash:
$ref: '#/components/schemas/UseAnonymousSessionHash'
url_query_parameter_to_exclude_from_url:
$ref: '#/components/schemas/UrlQueryParameterToExcludeFromUrl'
updated_at:
Expand Down Expand Up @@ -616,14 +626,37 @@ components:

TrustVisitorsCookies:
type: boolean
deprecated: true
description: |
DEPRECATED! Use `use_session_hash` / `use_anonymous_session_hash` instead.
When enabled, session events wont be matched by a device fingerprint. Only vistor side generated `_id` paramater will be taken into account.
```
Initial global value:
false
```
example: false

UseSessionHash:
type: boolean
description: |
When enabled, session events that are tracked non-anonymously will be matched by a Session Hash. When disabled only vistor side generated `_id` paramater will be taken into account.
```
Initial global value:
true
```
example: true

UseAnonymousSessionHash:
type: boolean
description: |
When enabled, session events that are tracked anonymously will be matched by a Session Hash. When disabled only vistor side generated `_id` paramater will be taken into account.
```
Initial global value:
true
```
example: true

CampaignNameParams:
type: array
description: |
Expand Down

0 comments on commit 794aa47

Please sign in to comment.