# 获取集成模型管道系统属性信息

GET https://api.bimface.com/data/v1/pipe/integrations/{integrate-id}/systems

# 说明

获取目标文件内管道系统的属性信息。

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
integrate-id * 集成文件id integer (int64)
*为必填项

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«List«EssentialSystemResponseBean»»
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponseV1«List«EssentialSystemResponseBean»»
名称 说明 类型
code 样例: "code" string
data 返回数据 < EssentialSystemResponseBean >array
systemId 系统id string
name 系统名称 string
systemType 系统类型 string
flowFrom 流入构件 < string >array
flowInto 流出构件 < string >array
terminals 终端设备 < string >array
parentId 父系统id,若无则parentId=systemId string
fileId 对应子文件ID int64
message 样例: "message" string

# 生成

  • */*
  • application/json

# HTTP请求示例

# 请求 path
https://api.bimface.com/data/v1/pipe/integrations/2469540109043648/systems
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"

# HTTP响应示例

# 响应 200
{
    "code": "bimfaceservice-0000",
    "message": null,
    "data": [
        {
            "fileId": 10000017820179,
            "flowFrom": [],
            "flowInto": [],
            "name": "ZP 15",
            "parentId": "848079",
            "systemId": "848079",
            "systemType": "FireProtectPreaction",
            "terminals": [
                "848076",
                "848077"
            ]
        }
        ],
  "message" : "message"
}