获取
描述
integer/array correlation.get(object parameters)
这个方法允许根据给定的参数检索联系
。
参数
(object)
定义需要输出的参数。
这个方法支持以下参数。
返回值
(integer/array)
返回:
- 一个对象数组;
- 如果使用了
countOutput
参数,被检索的对象的数量。
示例
检索联系
检索所有具有相关条件和操作的已配置过的联系
。过滤使用 “AND/OR” 的评估类型,因此 formula
属性为空,且 eval_formula
将自动生成。
请求:
{
"jsonrpc": "2.0",
"method": "correlation.get",
"params": {
"output": "extend",
"selectOperations": "extend",
"selectFilter": "extend"
},
"auth": "343baad4f88b4106b9b5961e77437688",
"id": 1
}
响应:
{
"jsonrpc": "2.0",
"result": [
{
"correlationid": "1",
"name": "Correlation 1",
"description": "",
"status": "0",
"filter": {
"evaltype": "0",
"formula": "",
"conditions": [
{
"type": "3",
"oldtag": "error",
"newtag": "ok",
"formulaid": "A"
}
],
"eval_formula": "A"
},
"operations": [
{
"type": "0"
}
]
}
],
"id": 1
}
参见
来源
CCorrelation::get() in frontends/php/include/classes/api/services/CCorrelation.php.