Fine+接口
  1. API服务
Fine+接口
  • 数据融合
    • API服务
      • 搜索
        POST
      • 指标属性
        GET
      • 指标血缘
        GET
      • 指标相关维度
        GET
      • 维度属性
        GET
      • 维度血缘
        GET
      • 维度相关指标
        GET
      • 维度值
        POST
      • 数据查询
        POST
      • SQL查询
        POST
  1. API服务

搜索

开发中
POST
/api/dc/{version}/indicator/search
最后修改时间:2026-01-15 01:37:49

请求参数

Authorization
在 header 添加参数
Authorization
示例:
Authorization: ********************
Path 参数

Body 参数application/json

示例
{
    "queryId": "18898ce1-4af9-4132-97eb-8a3487e0ea11",
    "keyword": "1",
    "force": false,
    "privilege": "use",
    "pageIndex": 1,
    "pageSize": 50,
    "filter": {
        "tableTypes": [
            2,
            3
        ],
        "itemTypes": [
            3
        ],
        "creators": [
            "b5f0c2ee-640f-4039-a4d4-918b55354898"
        ],
        "tags": [
            "69c069ea-0e89-45a8-a3cb-7bdeaf61ca14",
            "8b3cef90-77ee-4ae1-add1-8feb996f682d"
        ],
        "extensionProperties": [
            {
                "id": "b2667637-9bfc-414f-abc6-2520c60e01ab",
                "filterValue": [
                    "3"
                ]
            }
        ]
    }
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/dc/v1/indicator/search' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "queryId": "18898ce1-4af9-4132-97eb-8a3487e0ea11",
    "keyword": "1",
    "force": false,
    "privilege": "use",
    "pageIndex": 1,
    "pageSize": 50,
    "filter": {
        "tableTypes": [
            2,
            3
        ],
        "itemTypes": [
            3
        ],
        "creators": [
            "b5f0c2ee-640f-4039-a4d4-918b55354898"
        ],
        "tags": [
            "69c069ea-0e89-45a8-a3cb-7bdeaf61ca14",
            "8b3cef90-77ee-4ae1-add1-8feb996f682d"
        ],
        "extensionProperties": [
            {
                "id": "b2667637-9bfc-414f-abc6-2520c60e01ab",
                "filterValue": [
                    "3"
                ]
            }
        ]
    }
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "keyword": "string",
    "highlight": [
        "string"
    ],
    "items": [
        {
            "name": "string",
            "transferName": "string",
            "type": 0,
            "createBy": "string",
            "initTime": 0,
            "comment": null,
            "validStatus": "string",
            "parentId": "string",
            "editable": true,
            "usable": true,
            "sqlEditable": true,
            "position": "string",
            "publishStatus": 0,
            "coopAnalysis": true,
            "creatorAuth": true,
            "dbTableName": "string",
            "connectionName": "string",
            "moduleType": 0,
            "extractDataSetting": 0,
            "inherit": true,
            "belongAnalysis": true,
            "configUpdateTime": 0,
            "activeType": 0,
            "updateMode": 0,
            "consanguinityLevel": 0,
            "consanguinityOverLimit": true,
            "canSwitchRealtime": true,
            "dbMode": 0,
            "engineType": "string",
            "creator": {
                "id": "string",
                "name": "string"
            },
            "tags": [
                {
                    "id": "string",
                    "name": "string",
                    "description": "string"
                }
            ],
            "itemType": 3,
            "fields": [
                "string"
            ],
            "approver": [
                {
                    "userId": "string",
                    "displayName": "string",
                    "userName": "string"
                }
            ],
            "path": [
                {
                    "id": "string",
                    "name": "string"
                }
            ],
            "authApplyStatus": 0,
            "neverUpdate": true
        }
    ],
    "count": 0,
    "pageCount": 0,
    "pageIndex": 0,
    "type": 1
}
下一页
指标属性
Built with