# 获取单模型管道系统中管件的拓扑属性
GET https://api.bimface.com/data/v1/pipe/files/{file-id}/elements/{element-id}/properties
# 参数
# Header
| Authorization * | Bearer {accessToken} | string | 
# Path
| element-id * | 构件id | string | 
| file-id * | 文件id | string | 
# 响应
| HTTP代码 | 说明 | 类型 | 
|---|---|---|
| 200 | OK | GeneralResponseV1«EssentialPipingElementResponseBean» | 
| 401 | Unauthorized | - | 
| 403 | Forbidden | - | 
| 404 | Not Found | - | 
# 200响应参数
GeneralResponseV1«EssentialPipingElementResponseBean»
 | 名称 | 说明 | 类型 | 
|---|---|---|
| code | 样例: "code" | string | 
| data | 返回数据 | EssentialPipingElementResponseBean | 
| message | 提示信息 | string | 
# 生成
- */*
- application/json
# HTTP请求示例
# 请求 path
https://api.bimface.com/data/v1/pipe/files/10000017070069/elements/493525/properties
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# HTTP响应示例
# 响应 200
{
    "code": "bimfaceservice-0000",
    "message": null,
    "data": {
        "flowFrom": [
            "493963"
        ],
        "flowInto": [
            "493565",
            "719490",
            "493578"
        ],
        "id": "493525",
        "in": [
            -8419.8545,
            -5650.9775,
            10350.5
        ],
        "name": "风管[493525]",
        "out": [
            -8419.8545,
            -9610.444,
            10350.5,
            -8419.8545,
            -9610.444,
            10350.5,
            -8419.8545,
            -9860.444,
            10350.5
        ],
        "systemId": [
            "493422"
        ],
        "type": "风管",
        "uvDirection": 0
    }
}