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