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>/params
Method: PATCH
Content-type: application/json

请求参数

Body:

Parameter

Type

Description

Required

name

str

属性名

true

status

int

状态信息

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

false

description

str

描述信息

false

show_name

str

展示信息

false

value_type

str

属性类型,目前支持

  • int 整型
  • float 浮点型
  • string 字符串类型
  • datetime 日期类型
  • list 列表类型
  • version 版本号类型

false

{
    "name": "need_refresh",
    "value_type": "string",
    "show_name": "need_refresh show_name",
    "description": "need_refresh desc"
}

返回参数

Response:

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