You need to enable JavaScript to run this app.
导航
修改事件属性
最近更新时间:2024.06.30 18:36:03首次发布时间:2024.06.30 18:36:03

请求说明

Path:openapi/v1/metadata/<app_id: int>/params
Method: PATCH
Content-type: application/json

请求参数

Body:

参数

类型

是否必选

示例值

描述

name

str

need_refresh

属性名

status

int

1

状态信息

  • 0 禁用
  • 1 启用
  • 2 隐藏

description

str

null

描述信息

show_name

str

null

展示信息

value_type

str

string

属性类型,目前支持

  • int 整型
  • float 浮点型
  • string 字符串类型
  • datetime 日期类型
  • list 列表类型
  • version 版本号类型
{
    "name": "need_refresh",
    "value_type": "string",
    "show_name": "need_refresh show_name",
    "description": "need_refresh desc"
}

返回参数

Response:

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