获取筛选条件。
ServiceName: apmplus_openapi Region: cn-beijing X-App-Ids: xxx Content-Type: application/json
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetFieldKeys | 接口名称。当前 API 的名称为 GetFieldKeys 。 |
Version | String | 是 | 2022-10-12 | 接口版本。当前 API 的版本为 2022-10-12 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
common | Object of CommonParams | 是 | - | 通用参数。 |
ev_type | String | 是 |
| 模块类型。
|
filter_conditions | Object of FilterCondition | 否 | - | 筛选条件。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
aid | Long | 是 | 12345 | 应用ID。 |
site_type | String | 是 | web | 站点类型。 |
env | String | 是 | online | 环境,填""时为全部。 |
os | String | 否 | webpro | 服务类型,可选值为webpro,app,minipro。 |
user | String | 否 | test_user | 用户名。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
type | String | 是 | and | 筛选条件类型,可选值为and和rule,只支持两层,第一层的type必须为and,第二层的type必须为rule。 |
field | String | 否 | pid | 条件字段key,可选值集合由GetFieldKeys 方法获取。 |
op | String | 否 | in | 条件符号,可选值有eq,neq,lt,lte,gt,gte,in,not_in,regex,not_regex。 |
groupKey | String | 否 | context | map类型字段key,可选值集合由GetFieldKeys 方法获取。 |
values | Array of String | 否 | [数据探索] | 条件值,可选值集合由GetFieldValues 方法获取。 |
children | Array of FilterCondition | 否 | - | 如果下层还有条件,则放入该处,即type为and时必填。这一层与field,op,groupkey以及values不能同时存在。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
data | Array of FieldKeysResp | - | 返回内容。 |
error_msg | String | success | 错误消息。 |
error_no | Integer | 500 | 错误码。0为成功。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
name | String | pid | 字段名称。 |
isDefault | Boolean | true | 是否默认。 |
renderForm | String | - | 展现形式。 |
description | String | - | 字段描述。 |
POST https://open.volcengineapi.com/?Action=GetFieldKeys&Version=2022-10-12 { "ev_type": "performance", "common": { "aid": 12345 }, "filter_conditions": { "type": "and", "children": [ { "op": "in", "field": "pid", "values": [ "数据探索" ] } ] } }
{ "err_detail":"", "data":[ { "name":"pid", "description":"pid", "renderForm":"RegexAndNotRegexEqAndNeqSymbol", "isDefault":false } ], "error_msg":"", "error_no":0 }
本接口无特有的错误码。更多信息请参见错误码。