# 批量获取集成模型管道系统中管件的拓扑属性
POST https://api.bimface.com/data/v1/pipe/integrations/{integrate-id}/elements/properties
# 参数
# Header
Authorization * | Bearer {accessToken} | string |
# Path
integrate-id * | integrate-id | integer (int64) |
# Body
fileIdHash | 集成文件子文件hash值 | string |
elementIds | 构件id列表 | < string >array |
# 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 | OK | GeneralResponseV1«List«EssentialPipingElementResponseBean»» |
201 | Created | - |
401 | Unauthorized | - |
403 | Forbidden | - |
404 | Not Found | - |
# 200响应参数
GeneralResponseV1«List«EssentialPipingElementResponseBean»»
名称 | 说明 | 类型 |
---|---|---|
code | 样例: "code" | string |
data | 返回数据 | < EssentialPipingElementResponseBean >array |
message | 提示信息 | string |
# 消耗
application/json
# 生成
*/*
application/json
# HTTP请求示例
# 请求 path
https://api.bimface.com/data/v1/pipe/integrations/2469540109043648/elements/properties
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# 请求 body
[{
"fileIdHash":10000017820191,
"elementIds":["905050","905054","905053"]
}]
# HTTP响应示例
# 响应 200
{
"code": "bimfaceservice-0000",
"message": null,
"data": [
{
"fileIdHash": "10000017820191",
"flowFrom": [
"905052"
],
"flowInto": [],
"id": "905050",
"in": [
35597.125,
17605.92,
-2138.0999
],
"name": "机械设备[905050]",
"out": [],
"systemId": [
"905055",
"905056"
],
"type": "机械设备",
"uvDirection": 0
},
{
"fileIdHash": "10000017820191",
"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
},
{
"fileIdHash": "10000017820191",
"flowFrom": [
"905054"
],
"flowInto": [],
"id": "905053",
"in": [
35587.5,
16907.525,
-2100.0
],
"name": "风管[905053]",
"out": [],
"systemId": [
"905056"
],
"type": "风管",
"uvDirection": 0
}
]
}