# 获取集成模型管道系统中管件的拓扑属性

GET https://api.bimface.com/data/v1/pipe/integrations/{integrate-id}/files/{file-id-hash}/elements/{element-id}/properties

# 说明

获取管道系统中管件的拓扑属性信息。

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
element-id * 构件id string
file-id-hash * 集成模型子文件hash值 string
integrate-id * 集成文件id integer (int64)
*为必填项

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«EssentialPipingElementResponseBean»
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponseV1«EssentialPipingElementResponseBean»
名称 说明 类型
code 样例: "code" string
data 返回数据 EssentialPipingElementResponseBean
systemId 系统id < string >array
in 流入点 < float >array
name 样例: "name" string
flowFrom 流入构件 < string >array
fileIdHash 样例: "1223445667788" string
id 样例: "37d6f0acc1e141f69b8f6114bfef5fdb" string
flowInto 流出构件 < string >array
type 构件类型 string
out 流出点 < float >array
uvDirection 流动方向 int32
message 样例: "message" string

# 生成

  • */*
  • application/json

# HTTP请求示例

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

# HTTP响应示例

# 响应 200
{
    "code": "bimfaceservice-0000",
    "message": null,
    "data": {
        "flowFrom": [
            "905050"
        ],
        "flowInto": [
            "905053"
        ],
        "id": "905054",
        "in": [
            35587.5,
            17018.545,
            -2100.0
        ],
        "name": "风管管件[905054]",
        "out": [
            35587.5,
            16907.525,
            -2100.0
        ],
        "systemId": [
            "905056"
        ],
        "type": "风管管件",
        "uvDirection": 0
    }
}