修改素材分组
开发中POST
/open-api/material_library/group/update请求参数
Body 参数application/json
name
string
必需
分组名称,限制最大长度20
department_list
array[string]
必需
可见范围 部门ID列表
group_id
integer
分组ID
示例
{
"name": "圆流通",
"department_list": [
"cillum exercitation dolor esse"
],
"group_id": 48
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
group
object
必需
department_list
array[string]
可见部门列表
id
integer
分组id
name
string
分组名
status_code
integer
必需
status_message
string
必需
success
boolean
必需
示例
{
"group": {
"department_list": [
"cillum exercitation dolor esse"
],
"id": 100930039,
"name": "abc"
},
"status_code": 200,
"status_message": "ok",
"success": true
}
最后修改时间: 2 个月前