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>/virtual_params
Method: POST
Content-type: application/json

请求参数

Body:

参数

类型

是否必选

示例值

描述

name

str

$_vp_test_add

属性名

show_name

str

null

展示名

description

str

null

描述信息

property_type

int

1

虚拟属性类型

  • 1 事件属性
  • 2 用户属性

event_relation_strategy

str

any

事件关联类型

  • all 全部关联才关联
  • any 任一关联即关联

value_type

str

string

属性类型

sql_rule

str

concat(user_profiles.device_model, ' ', user_profiles.os_version)

sql表达式

{
    "property_type": 1,
    "value_type": "string",
    "event_relation_strategy": "any",
    "sql_rule": "concat(user_profiles.device_model, ' ', user_profiles.os_version)",
    "name": "$_vp_test_add"
}

返回参数

Response:

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