# 用户组多条修改

  • 接口说明: 用户组多条修改
  • 接口地址: /api/groups/
  • 请求方式: PATCH

# 请求参数

参数名称 类型 是否必须 描述
name string 用户组名称
type string 类型
color string 颜色
icon string icon
scale int 分成
is_subordinate bool 是否允许推广下线(注册收入)
is_commission bool 是否允许收入提成(打赏/付费)

请求示例:

{
  "data": {
    "attributes": {
      "name": "TomAuth",
      "type": "类型",
      "color": "red",
      "icon": "Aa",
      "scale": 2,
    },
    "attributes": {
      "name": "TomAuth",
      "type": "类型",
      "color": "red",
      "icon": "Aa"
    }
  }
}

# 返回结果

参数名称 类型 出现要求 描述

# 返回说明

  • 成功, http 状态码: 200
  • 失败, http 状态码: 非 200

# 返回示例

{
  "data": [
    {
      "type": "groups",
      "id": "10",
      "attributes": {
        "name": "9A组",
        "type": "类型",
        "color": "",
        "icon": ""
      }
    },
    {
      "type": "groups",
      "id": "11",
      "attributes": {
        "name": "10B组",
        "type": "类型",
        "color": "red",
        "icon": "a-b"
      }
    }
  ]
}