You need to enable JavaScript to run this app.
导航
增加事件(通用操作)
最近更新时间:2025.07.16 15:56:15首次发布时间:2025.07.16 15:56:15
我的收藏
有用
有用
无用
无用

请求说明

Path:openapi/v1/metadata/<app_id: int>/events:batchOperate
Method: POST
Content-type: application/json

请求参数

Body:

Parameter

Type

Description

Required

events

list

事件列表

true

operation_type

int

操作标识,当前只支持

  • 5 创建
  • 6 修改

true

{
    "events": [
        {
            "name": "aaaa",
            "show_name": "aaa",
            "event_group_ids": [
                11130
            ],
            "desc": "aaa"
        }
    ],
    "operation_type": 5
}

返回参数

Response:

{
    "code": 200,
    "message": "success",
    "data": true
}