企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
>获取团队信息 ~~~[api] get:/index.php/gamecow/Apigame/member_get_team <<< success { "err": 0, "data": { "own": { "recommendCount": 2, "totalRebate": "5.0000" }, "rebate": { "total": 3, "direct": 0, "indirect": 3 }, "recommendUser": true, "recommend": { "recommendCount": 3, "totalRebate": "0.0000", "headpath": "https:\/\/dss0.bdstatic.com\/5aV1bjqh_Q23odCf\/static\/superman\/img\/logo_top-e3b63a0b1b.png", "nickname": "我的度假酒店居多家具家电大家觉得" }, "leve": { "leve": 1, "experience": 100, "maxExperience": 100 } } } ~~~ | 字段 | 详情 | | --- | --- | | data| 积分信息| | |---own| 自己的信息 | | |---|---recommendCount| 推荐的好友人数 | | |---|---totalRebate| 好友累计赚钱的数量 | | |---rebate| 今日好友给我赚钱数 | | |---|---total| 今日合计赚钱数 | | |---|---direct| 直接好友贡献 | | |---|---indirect| 间接好友贡献 | | |---|---totalActive| 所有活跃好友人数 | | |---|---directActive| 直接活跃好友人数 | | |---|---indirectActive| 间接活跃好友人数 | | |---recommendUser| 是否有推荐用户,没有返回false ,recommend参数不存在| | |---recommend| 我的推荐人信息 | | |---|---recommendCount| 推荐的好友人数 | | |---|---totalRebate| 累计收益的数量 | | |---|---headpath| 推荐人头像 | | |---|---nickname| 推荐人昵称 | | |---leve| 我的等级信息信息 | | |---|---leve| 会员等级 | | |---|---experience| 当前经验 | | |---|---maxExperience| 最大经验 | >获取推荐人列表 ~~~[api] get:/index.php/gamecow/Apigame/member_get_recommend int:type=1#1:直接推荐人列表,2:间接推荐人列表 int:page=1#当前页码 int:pagesize=30#每页显示条数,默认30 <<< success { "err": 0, "data": [{ "id": 4, "logintime": "2020-04-07 15:13:17", "nickname": "22222", "headpath": "", }, { "id": 5, "logintime": "", "nickname": "", "headpath": "", }] } ~~~ | 字段 | 详情 | | --- | --- | | data| 用户信息| | |---id| 会员id | | |---logintime| 最后登录时间 | | |---nickname| 昵称| | |---headpath| 头像 | >获取推荐好友人数 ~~~[api] get:/index.php/gamecow/Apigame/member_get_friend <<< success { "err": 0, "data": { "recommend": { "total": 4, "direct": 2, "indirect": 2 } } } ~~~ | 字段 | 详情 | | --- | --- | | leve| 等级信息| | |---total| 总共推荐人数 | | |---direct| 直接好友推荐数 | | |---indirect| 间接好友推荐数 |