Forum Discussion
inespais
2 months agoMentor
Help with Query around custom event properties
Hey all! Trying to run a query to output volume of a specific custom event (with a specific property) performed by users who entered a specific canvas. I'm using the USERS_BEHAVIORS_CUSTOMEVENT_SHAR...
DeepanshuP18
2 months agoCollaborator
Hello inespais could you please try this :
voucher_redeems AS (
SELECT DISTINCT user_id
FROM USERS_BEHAVIORS_CUSTOMEVENT_SHARED
WHERE name = 'Voucher Redeem'
AND PARSE_JSON(properties):campaign_name::STRING = 'XYZ_CAMPAIGN'
)
This directly extracts the campaign_name property as a string.
Hope this works :)
Related Content
- 2 years ago
- 5 months ago
- 2 years ago
- 9 months ago