💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 根据用户名获取分组列表 ### 接口说明 查询账户下所有分组信息。 ### 请求URL {{url}}/v1/group/list ### HTTP请求方式 GET/POST ### 请求参数 (1)通用参数 参见:[通用参数](/2523136) (2)私有参数 | 参数名称 | 参数类型 | 是否必填 | 参数说明 | 默认值 | | --- | --- | --- | --- | --- | | userId | String | 是 | 用户ID | | | ### 返回值 | 参数 | 类型 | 描述 | | --- | --- | --- | | code | Int | 返回码:0: 正确返回 其它: 失败。参考错误码说明 | | success | Boolean | 成功:true;失败:false | | message | String | 如果code不为0,会有相应的错误信息提示 | | result | String | 结果 | | timestamp | Long | 时间戳 | #### result参数列表: | 参数 | 类型 | 描述 | | --- | --- | --- | | id | String | ID号码 | | name | String | 分组名称 | | oilPrice | String | 油价(元/升) | | yieldCalculation | Integer | 是否计算产量(0.关闭,1.开启) | | isDepartureRate | Integer | 是否计算出车率(0.关闭;1.开启) | | isAverageFuel | Integer | 计算平均油耗(0.关闭;1.开启) | | state | Integer | 状态(0.正常;1.禁用) | | createBy | String | 创建人 | | createTime | String | 创建时间 | #### 正确返回示例: ~~~ { "code": 0, "success": true, "message": "Success", "result": [ { ""id": "1283273502698246145", "name": "部门一", "oilPrice": 6.0, "yieldCalculation": 1, "isDepartureRate": 1, "isAverageFuel": 1, "state": 0, "createBy": "1515698xxxx", "createTime": "2020-07-15 13:33:40" } ], "timestamp": 1636343537081 } ~~~ #### 错误返回示例: ~~~ { "code": 1003, "success": false, "message": "用户不存在!", "result": "", "timestamp": 1636343446272 } ~~~