如何获取CleverTap中前几天的新用户数量

时间:2017-06-09 11:09:22

标签: clevertap

我是CleverTap的新手。

我想获得前30天每个新用户的数量。我只能从仪表板上查看今天显示的新用户号码。但是如何用API读取值?

有人建议查询应该是这样的:

import time
from pywinauto.application import Application

# Run a target application
app = Application().start("C:\ProgramFiles\BatonMediaPlayer\BatonMediaPlayer.exe")
time.sleep(5)

# Select a menu item
print app.BatonMediaPlayer.Children()
print "app.BatonMediaPlayer.SetFocus()", app.BatonMediaPlayer.SetFocus()
time.sleep(1)

app.BatonMediaPlayer.menu_select('Help->About')

如何获得新用户的数量?

非常感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用“Counts API,趋势” - https://support.clevertap.com/docs/api/working-with-counts.html#trends-api

来获得此答案

查询应该是这样的

端点:POST https://api.clevertap.com/1/counts/trends.json 标题:X-CleverTap-Account-Id,X-CleverTap-Passcode(可在CleverTap仪表板的设置部分下找到)& Content-Type标头必须指定为application / json。

查询:

{
    "event_name": "App Launched",
    "session_properties": [{
        "name": "first_time",
        "value": "True"
    }],

    "from": 20170101,
    "to": 20170511,
    "unique": false,
    "groups": {
        "foo": {
            "trend_type": "daily"
        },
        "bar": {
            "trend_type": "weekly"
        },
        "foobar": {
            "trend_type": "monthly"
        }
    }
}

“首次”过滤器将选择在该时间范围内首次启动您的应用的用户,即新用户!