💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ### 获取账号使用期限信息 #### URL > web/index.php?c=user&a=edit&do=edit_account_dateline&uid=用户UID #### 请求方式 > GET #### 请求参数 无 #### 返回数据 ``` { "message": { "errno": 0, "message": { "endtime": "2019-10-17", //到期时间 "total_timelimit": 30, //用户总有效天数 "group_info": { //所属用户组信息 "id": "57", "owner_uid": "0", "name": "体验组", //用户组名称 "package": "a:1:{i:0;i:133;}", "maxaccount": "2", "timelimit": "20", "maxwxapp": "0", "maxwebapp": "0", "maxphoneapp": "0", "maxxzapp": "0", "maxaliapp": "0", "maxbaiduapp": "0", "maxtoutiaoapp": "0" }, "extra_timelimit": "10" //附加有效天数 } }, "redirect": "", "type": "ajax" } ``` ### 修改账号使用期限附加权限 #### URL > web/index.php?c=user&a=edit&do=edit_user_extra_limit&uid=用户UID #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | timelimit | int | 是 | 附加天数 | - | #### 返回数据 正确: ``` { "message": { "errno": 0, "message": "修改成功" }, "redirect": "", "type": "ajax" } ``` 错误: ``` { "message": { "errno": -1, "message": "错误信息" }, "redirect": "", "type": "ajax" } ```