这个方法允许根据给定的参数检索联系

    参数

    (object) 定义需要输出的参数。

    这个方法支持以下参数。

    • 一个对象数组;

    • 如果使用了 countOutput 参数,被检索的对象的数量。

    示例

    检索联系

    检索所有具有相关条件和操作的已配置过的联系。过滤使用 “AND/OR” 的评估类型,因此 formula 属性为空,且 eval_formula 将自动生成。

    响应:

    1. "jsonrpc": "2.0",
    2. "result": [
    3. {
    4. "name": "Correlation 1",
    5. "description": "",
    6. "status": "0",
    7. "filter": {
    8. "evaltype": "0",
    9. "formula": "",
    10. "conditions": [
    11. {
    12. "type": "3",
    13. "oldtag": "error",
    14. "formulaid": "A"
    15. }
    16. "eval_formula": "A"
    17. },
    18. "operations": [
    19. {
    20. "type": "0"
    21. }
    22. ]
    23. }
    24. ],
    25. "id": 1
    26. }

    来源