You need to enable JavaScript to run this app.
导航
增加事件(通用操作)
最近更新时间:2024.06.30 18:36:04首次发布时间:2024.06.30 18:36:04

请求说明

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

请求参数

Body:

参数

类型

是否必选

示例值

描述

events

list

见下文请求示例

事件列表

operation_type

int

5

操作标识,当前只支持

  • 5 创建
  • 6 修改
{
    "events": [
        {
            "name": "aaaa",
            "show_name": "aaa",
            "event_group_ids": [
                11130
            ],
            "desc": "aaa"
        }
    ],
    "operation_type": 5
}

返回参数

Response:

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