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

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

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
file-id * 文件id string
*为必填项

# 响应

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 流入构件列表(rvm) < string >array
flowInto 流出构件列表(rvm) < string >array
terminals 终端构件(rvt) < string >array
parentId 父系统ID string
message 提示信息 string

# 生成

  • */*
  • application/json

# HTTP请求示例

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

# HTTP响应示例

# 响应 200
{
    "code": "bimfaceservice-0000",
    "message": null,
    "data": [
        {
            "flowFrom": [
                "54",
                "1317"
            ],
            "flowInto": [
                "962",
                "951"
            ],
            "name": "/100-B-8",
            "parentId": "995",
            "systemId": "1287",
            "systemType": "PIPE",
            "terminals": []
        }
    ]
}