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

请求参数

Body:

参数

类型

是否必选

示例值

描述

filter

object

见下文请求示例

根据某些字段做过滤,可选值通常可用:

  • name 属性名
  • status 属性状态

with

list

获取事件时,携带获取关联的元数据信息,可选值为:

  • event 属性关联的事件
  • values 事件属性值
  • alias 属性值对应的前端展示值
  • property_dict 维度字典

注意:with更多的关联信息将影响接口性能。

{
    "filter": {
        "name": ["os_name"]
    }
}

返回参数

Response:

{
    "code": 200,
    "message": "success",
    "data": [
        {
            "id": 77584,
            "app_id": 2174,
            "name": "os_name",
            "show_name": "操作系统",
            "backing_show_name": "操作系统",
            "i18n_show_names": {
                "zh_CN": "操作系统",
                "en_US": "OS",
                "ja_JP": "オペレーティングシステム"
            },
            "description": "198273",
            "store_location": "os_name",
            "store_value_type": "string",
            "value_type": "string",
            "values": null,
            "aliases": {},
            "i18n_aliases": null,
            "has_property_dict": false,
            "property_dict_version": null,
            "property_dict_updated_ts": 1670838554,
            "property_dict": null,
            "used_users": 41,
            "used_times": 8268,
            "used_times_updated_ts": 1672650040,
            "cardinality": null,
            "slot_index": null,
            "slot_name": null,
            "source_type": 0,
            "status": 1,
            "operation_type": "all_value",
            "feature_code": "",
            "is_support_realtime": true,
            "creator_id": "preset",
            "updator_id": "刘志强(10000450)",
            "verifier": null,
            "created_at": 1616472404,
            "updated_at": 1674962391,
            "verify_time_ts": null,
            "status_disable_ts": null,
            "origin": 0,
            "data_source_name": null,
            "data_source_field": null,
            "data_source": null,
            "principal": "",
            "data_reported": 1,
            "attr_classify": null
        }
    ]
}