获取App的PV和UV的数值。
ServiceName: apmplus_openapi Region: cn-beijing X-App-Ids: xxx Content-Type: application/json
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetAppPvUv | 接口名称。当前 API 的名称为 GetAppPvUv 。 |
Version | String | 是 | 2022-10-12 | 接口版本。当前 API 的版本为 2022-10-12 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
start_time | Integer | 是 | 1665417600 | 开始时间。 |
end_time | Integer | 是 | 1665504000 | 终止时间。 |
filters | Object of Condition | 否 | - | 筛选条件,可以指定多个键值对来筛选数据。 |
time_type | String | 否 |
| 时间类型。
|
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
op | String | 否 |
| 操作符。
|
type | String | 否 |
| 筛选条件类型。
|
value | String | 否 | Android | 筛选值。 |
values | Array of String | 否 | ["Android"] | 筛选值,支持多个。 |
map_key | String | 否 | key_1 | map类型key,当type为map时必填。 |
dimension | String | 否 | aid | 条件的名称。 |
sub_conditions | Array of Condition | 否 | - | 子条件。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
data | Object of QueryMetricResponseData | - | 返回数据。 |
error_msg | String | - | 错误信息。 |
error_no | Integer | 0 | 错误码。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
pv | Integer | 96708 | PV值。 |
uv | Integer | 2047 | UV值。 |
POST https://open.volcengineapi.com?Action=GetAppPvUv&Version=2022-10-12 { "start_time":1677772800, "end_time":1678442865, "filters":{ "type":"and", "sub_conditions":[ { "dimension":"os", "op":"in", "type":"expression", "values":[ "Android" ] } ] } }
{ "err_detail":"", "data":{ "pv":96708, "uv":2047 }, "error_msg":"", "error_no":0 }
本接口无特有的错误码。更多信息请参见错误码。