# 发起BIM元素信息抽提

PUT https://api.bimface.com/feature-management/v1/domain/extraction

# 说明

针对目标文件及指定业务场景,对BIM元素信息进行抽提操作。

# 参数

Authorization * bearer {accessToken} string
*为必填项
# Body
configStr string
callback 回调url string
extractType 抽提的资源类型 string
fileId 需要实现抽提的文件ID int64

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«ExtractionResponse»
201 Created -
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponseV1«ExtractionResponse»
名称 说明 类型
code 样例: "code" string
data ExtractionResponse
extractId 抽提数据的ID int64
createTime 抽提服务创建时间 int64
errorMessage 错误信息 string
errorCode 错误码 string
extractType 抽提的资源类型 string
fileId 抽提服务对应的单文件ID int64
status 抽提状态 string
message 样例: "message" string

# 消耗

  • application/json

# 生成

  • */*
  • application/json

# HTTP请求示例

# 请求 path
https://api.bimface.com/feature-management/v1/domain/extraction
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# 请求 body
{
  "callback" : "callback",
  "configStr" : "string",
  "extractType" : "extractType",
  "fileId" : 1938888813662976
}

# HTTP响应示例

# 响应 200
{
  "code" : "code",
  "data" : {
    "createTime" : 1661942291532,
    "errorCode" : "errorCode",
    "errorMessage" : "errorMessage",
    "extractId" : 2444042312607712,
    "extractType" : "extractType",
    "fileId" : 1938888813662976,
    "status" : "status"
  },
  "message" : "message"
}