How to cheack if this new player

How to cheack if this new player or is old player

Hi @gugjuiu19 ,

Thanks for reaching out! Are you using Analytics, by any chance? That is always a great way to find out of it’s a new player or not. For example, if you know their USER_ID you can use this query in your SQL Data Explorer to find out when they sent their 1st event:

SELECT
USER_ID,
PLAYER_START_DATE
FROM
EVENTS
WHERE
USER_ID = "XXXXX";

Let me know if you have further questions.

Best,
Randy

1 Like