# 获取集成模型管道系统内满足条件的构件id列表

POST https://api.bimface.com/data/v1/pipe/integrations/{integrate-id}/files/{file-id-hash}/systems/{system-id}/element-ids

# 说明

依据筛选条件,获取管道系统中的构件id列表。

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
system-id * 系统id string
file-id-hash * file-id-hash string
integrate-id * integrate-id integer (int64)
*为必填项
# Body
filter * 筛选字段 Map«string,object»
*为必填项

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«List«string»»
201 Created 无内容
401 Unauthorized 无内容
403 Forbidden 无内容
404 Not Found 无内容
# 消耗
  • application/json
# 生成
  • \*/*
  • application/json

# HTTP请求示例

# 请求 path
https://api.bimface.com/data/v1/pipe/integrations/2469540109043648/files/10000017820191/systems/905056/element-ids
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# 请求 body
[
    {
        "type":"/FRAN"
    },
    {
        "type":"圆柱"
    }
]

# HTTP响应示例

# 响应 200
{
    "code": "bimfaceservice-0000",
    "message": null,
    "data": [
        "905050",
        "905054",
        "905053"
    ]
}