用户数据

# 用户数据总览 ## 说明 ``` ``` ### 请求参数 | 参数 | 说明 | 类型 | 备注 | 是否必填 | | ------- | -------- | ------ | ------------------- | -------- | | _handle | 处理类 | string | 固定值: UserPage| 是 | | _method | 处理方法 | string | 固定值: GetUserOverview| 是 | #### 请求地址 ``` 暂无 ``` ##### 返回值 ```json { "code": 1, "msg": "succeed", "data": { "xy_reg_count":"123",// 今日新增 "xy_reg_count_from_yesterday":"+123",// 较昨日 "xy_user_reg_total":"123",// 累计注册 "xy_reg_count_high":"2020年6月6日(123个)",// 历史最高 "xy_reg_cps_count":"123",// 今日新增渠道注册 "xy_reg_cps_count_from_yesterday":"+123",// 较昨日 "xy_cps_user_reg_total":"123",// 累计渠道注册 "xy_reg_cps_count_high":"2020年6月6日(123个)",// 历史最高 } } ``` # 用户数据总览 ### 请求参数 | 参数 | 说明 | 类型 | 备注 | 是否必填 | | ------- | -------- | ------ | ------------------- | -------- | | _handle | 处理类 | string | 固定值: UserPage| 是 | | _method | 处理方法 | string | 固定值: GetChart| 是 | | start_time | 开始日期 | datetime| 默认值: datetime.now.addday(-3) 2020-08-08 20:00:00| 是 | | end_time | 结束日期 | datetime| 默认值: datetime.now 2020-08-08 20:00:00| 是 | #### 请求地址 ``` 暂无 ``` ##### 返回值 ```json { "code": 1, "msg": "succeed", "data": { "reg":// 用户注册量趋势 [ { "time":"2020-08-08 20:00:00", "total":"123" } ], "source":// 用户来源类型 [ { "time":"2020-08-08 20:00:00", "cps":"123", "pt":"123", "cpl":"123", "box":"123", "sdk":"123", "fenfa":"123", } ], "cps":// 渠道注册top10 [ { "xy_source_id":"推广员编号", "xy_source":"推广员帐号", "total":"123" } ], "pt":// 平台注册top10 [ { "xy_source_id":"", "xy_source":"play", "total":"123" } ], "cpl":// 广告注册top10 [ { "xy_source_id":"", "xy_source":"推荐人", "total":"123" } ], "fenfa":// 分发注册top10 [ { "xy_source_id":"代理商编号", "xy_source":"代理商名称", "total":"123" } ], "sdk":// SDK注册top10 [ { "xy_source_id":"盒子id", "xy_source":"盒子", "total":"123" } ], "share":// 分享注册top10 [ { "xy_source_id":"分享人id", "xy_source":"分享人账号", "total":"123" } ], } } ```