You need to enable JavaScript to run this app.
导航
修改用户属性
最近更新时间:2025.07.16 15:56:16首次发布时间:2025.07.16 15:56:16
我的收藏
有用
有用
无用
无用

请求说明

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

请求参数

Body:

Parameter

Type

Description

Required

profiles

list

用户属性

true

operation_type

int

操作类型

  • 5 新增
  • 6 修改

true

profiles[0].name

str

属性名

true

profiles[0].status

int

状态信息

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

false

profiles[0].description

str

描述信息

false

profiles[0].show_name

str

展示信息

false

profiles[0].value_type

str

属性类型,目前支持

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

false

{
    "profiles": [
        {
            "name": "os_name",
            "show_name": "os_name show_name",
            "description": "os_name desc"
        }
    ],
    "operation_type": 6
}

返回参数

Response:

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