I am new to CleverTap.
I want to get the number of new users in each of the previous 30 days. I can only view from the dashboard that today's new user number is shown. But how to read the values with API?
It was suggested that the query should be like this:
clevertap = CleverTap("idxxxx", "passcodexxxx")
query = {
"event_name": "abc",
"from": 20170505,
"to": 20170609
}
result = clevertap.events(query)
info = pd.read_json(json.dumps(result))
How can I get the number of new users?
Thank you very much.