# 获取低于目标净空的构件信息
POST https://api.bimface.com/data/v1/feature-management/spaces/clearance-height-check/results/below-target-clearance-components
# 参数
# Header
Authorization * | Bearer {accessToken} | string |
# Body
clearanceHeightId * | 净空分析id | int64 |
# 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 | OK | GeneralResponseV1«List«EssentialSpaceObjectResultResponse»» |
201 | Created | - |
401 | Unauthorized | - |
403 | Forbidden | - |
404 | Not Found | - |
# 200响应参数
GeneralResponseV1«List«EssentialSpaceObjectResultResponse»»
名称 | 说明 | 类型 |
---|---|---|
code | 样例: "code" | string |
data | 返回数据 | < EssentialSpaceObjectResultResponse >array |
message | 提示信息 | string |
# 消耗
application/json
# 生成
*/*
application/json
# HTTP请求示例
# 请求 path
https://api.bimface.com/data/v1/feature-management/spaces/clearance-height-check/results/below-target-clearance-components
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# 请求 body
{
"clearanceHeightId":2544663489946240
}
# HTTP响应示例
# 响应 200
{
"code": "bimfaceservice-0000",
"message": null,
"data": [
{
"object": [
{
"clearanceHeight": 2552.0,
"isQualified": false,
"objectId": "10000779775057.928482"
},
{
"clearanceHeight": 2600.0,
"isQualified": false,
"objectId": "10000779773337.1344687"
},
{
"clearanceHeight": 2600.0,
"isQualified": false,
"objectId": "10000779775057.928493"
},
{
"clearanceHeight": 2662.1,
"isQualified": false,
"objectId": "10000779775057.928501"
}
],
"spaceId": "10000779773337_1785924",
"targetHeight": 2700.0,
"unit": "mm"
}
]
}