# 查询特征结构化状态 API
# 请求
GET https://apigate.glodon.com/bimface/api/files/{fileId}/extractFeatures
1
# 请求参数
类别 | 参数名 | 必选 | 类型 | 描述 |
---|---|---|---|---|
Header | Authorization | 是 | String | bearer {accessToken} |
Path | fileId | 是 | integer (int64) | 图纸文件ID |
# 响应
HTTP 代码 | 说明 | 类型 |
---|---|---|
200 | OK | 请求成功,根据业务 code 解析实际结果 |
401 | Unauthorized | 无内容 |
403 | Forbidden | 无内容 |
404 | Not Found | 无内容 |
# HTTP 请求示例
请求path
https://apigate.glodon.com/bimface/api/files/1211223382064960/extractFeatures
1
请求header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
1
# 返回值说明
名称 | 说明 | 类型 |
---|---|---|
createTime 可选 | 样例 : "2017-12-25 17:23:46" | string |
databagId 可选 | 样例 : "9b711803a43b92d871cde346b63e5019" | string |
fileId 可选 | 样例 : 1248789071339712 | integer (int64) |
name 可选 | 样例 : "bimface_2018.dwg" | string |
reason 可选 | 样例 : "reason" | string |
status 可选 | 样例 : "success" | string |
# 成功结果示例
{
"code" : "success",
"data" : {
"createTime" : "2020-09-07 18:26:01",
"databagId" : "9b711803a43b92d871cde346b63e5019",
"fileId" : 1248789071339712,
"reason" : "reason",
"status" : "success",
"message" : ""
}
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10