# 小组 API

# 创建更新小组

接口地址:/api/open/v2/group/upsert

请求方式:POST

请求数据类型:application/json

响应数据类型:*/*

接口描述:

请求示例:

{
  "body": {
    "active": 0,
    "description": "",
    "groupCode": "",
    "groupName": "",
    "staffCodes": []
  }
}

请求参数:

参数名称 参数说明 请求类型 是否必须 数据类型 schema
groupUpsertParams groupUpsertParams body true RequestParameter«GroupUpsertParams» RequestParameter«GroupUpsertParams»
  body false GroupUpsertParams GroupUpsertParams
    active 是否启用 false integer
    description 备注 false string
    groupCode 小组编号 false string
    groupName 小组名称 false string
    staffCodes 小组成员编号 false array string

响应状态:

状态码 说明 schema
200 OK BaseResponse
201 Created
401 Unauthorized
403 Forbidden
404 Not Found

响应参数:

参数名称 参数说明 类型 schema
code integer(int32) integer(int32)
message string

响应示例:

{
	"code": 0,
	"message": ""
}