用户组多条修改

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

请求参数

参数名称类型是否必须描述
namestring用户组名称
typestring类型
colorstring颜色
iconstringicon
scaleint分成
is_subordinatebool是否允许推广下线(注册收入)
is_commissionbool是否允许收入提成(打赏/付费)

请求示例:

  1. {
  2. "data": {
  3. "attributes": {
  4. "name": "TomAuth",
  5. "type": "类型",
  6. "color": "red",
  7. "icon": "Aa",
  8. "scale": 2,
  9. },
  10. "attributes": {
  11. "name": "TomAuth",
  12. "type": "类型",
  13. "color": "red",
  14. "icon": "Aa"
  15. }
  16. }
  17. }

返回结果

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

返回说明

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

返回示例

  1. {
  2. "data": [
  3. {
  4. "type": "groups",
  5. "id": "10",
  6. "attributes": {
  7. "name": "9A组",
  8. "type": "类型",
  9. "color": "",
  10. "icon": ""
  11. }
  12. },
  13. {
  14. "type": "groups",
  15. "id": "11",
  16. "attributes": {
  17. "name": "10B组",
  18. "type": "类型",
  19. "color": "red",
  20. "icon": "a-b"
  21. }
  22. }
  23. ]
  24. }