参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Authorization | String | 是 | HMAC-SHA256 Credential=BDPP2952f97532xxxxxx/20240716/cn/openPlatform/request, SignedHeaders=host;x-content-sha256;x-date, Signature=131f3d297eb22a7xxxxxx | 详细介绍请查阅调用方式文档 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
ApiAction | String | 是 | GetUserDetailAndEvent | 固定值,对应“请求说明”中的“接口名称” |
ApiVersion | String | 是 | 2023-06-20 | 固定值,版本号: 2023-06-20 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
tenant_code | String | 是 | 1 | 项目ID |
ignore_illegal | Bool | 否 | false | 默认值是“false”。 |
data_req | OnlineDataReq | 是 | {} | 请求信息 |
OnlineDataReq
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
id | String | 是 | 1 | 用户id |
id_type | String | 是 | uid | 用户的id类型,如baseid,uid,deviceid |
event | Array | 否 | [] | 行为事件相关的参数 |
detail | Array | 否 | [] | 明细相关的参数 |
OnlineEventItem
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
datasource_id | Int | 是 | 1 | 数据源id |
event_ids | Array | 是 | [1,2,3] | 事件ids |
start_time | String | 是 | 1683880304000 | 起始时间戳,单位 毫秒 |
end_time | String | 是 | 1683880305000 | 截止时间戳,单位 毫秒 |
need_properties | Bool | 否 | false | 默认是false, |
OnlineDetailItem
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
datasource_id | Int | 是 | 1 | 数据源id |
columnId | Array | 是 | [12,434,54] | 明细ids |
start_time | String | 是 | 1683880304000 | 起始时间戳,单位 毫秒 |
end_time | String | 是 | 1683880305000 | 截止时间戳,单位 毫秒 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
code | Int | 0 | 状态码,0表示正常 |
message | String | "" | 接口返回信息 |
data | OnlineData | {} | 结果 |
illegal_input | Array | [xxx] | 非法数据 |
data字段内容
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
event | Array | [] | 行为事件相关返回结果 |
detail | Array | [] | 明细相关返回结果 |
OnlineEvent
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
datasource_id | String | 1 | 数据源id |
date | String | 1732609482000 | 发生的时间戳,单位到 毫秒 |
id | String | 1 | 行为id |
name | String | click | 行为名称 |
properties | String | {} | 行为上报时用户的属性值,json 序列化后的String。如果请求参数中need_properties等于false,则此字段为空 |
OnlineDetail
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
datasource_id | String | 1 | 数据源id |
id | String | id | 明细id |
name | String | baseid | 明细名称 |
value | String | 100582 | 明细具体的值 |
date | String | 1732609482000 | 发生的时间戳,单位到 毫秒 |
{ "tenant_code": "1", "ignore_illegal": true, // 是否忽略未导入在线服务的数据 "data_req": { "id": "576465150349934594", "id_type": "baseid", "event": [ { "datasource_id": 37, "event_ids": [ 11 ], "start_time": "1732609482", // 时间戳 "end_time": "1733214282", "need_properties": false } ] } }
{ "code": 0, "illegalInput": [ "event_37_11" ], "data": { "event": [], "detail": [] }, "message": "" }
下表为您列举了该接口与业务逻辑相关的错误码。公共错误码请参见公共错误码文档。
HTTP 状态码 | 错误码 | 错误信息 | 说明 |
---|---|---|---|
400 | invalidParameter | PARAMETER INVALID | 参数非法,检查入参。 |