Skip to content

Track deep link navigation minds#3201

Manish requested to merge feat/track-deeplinks-m3201 into develop

Ticket(s) / Related Merge Requests

(Any issue cards for the merge request, and related merge requests/dependencies)

minds#3201 (closed)

Summary of Changes

Adds tracking for UTM parameters by tracking deep link URLs and push notif navigations

Testing Considerations

Open a notification link AND/OR open a deeplink.

Run the following query in superset and you should see the results of the deep link events (only updates every 24h):

SELECT 
  collector_tstamp as timestamp, 
  page_url,
  MKT_CAMPAIGN,
  MKT_CONTENT,
  MKT_MEDIUM,
  MKT_SOURCE
FROM MINDS_ANALYTICS.dbt_prod.stg_snowplow_events
WHERE platform = 'mob'
AND event_name = 'deep_link_received'
AND collector_tstamp > '2022-06-01'
AND MKT_CAMPAIGN IS NOT NULL
LIMIT 10; 

Regression Scope

(Can this change cause another regression issue? Which areas to focus on for regression testing?)

None

Platform Affected (web, mobile, etc)

all

Developer Testing Completed

local

Screenshots

Screen_Shot_2022-07-05_at_14.37.37

Does this impact

  • Localization
  • Dark/light mode
  • Guest mode
Edited by Manish

Merge request reports