# 查询BIM元素信息抽提状态及列表

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

# 说明

查询文件内关联的BIM元素信息情况。

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Query
pageNo pageNo (默认值:1) integer (int32)
pageSize pageSize (默认值:20) integer (int32)
# Body
extractId 抽提数据的ID int64
extractType 抽提数据的类型 string
projectId* 项目ID int64
fileId 文件ID int64
status 抽提状态,99代表抽提成功,-1代表抽提失败,1代表抽提中,-2代表支付失败,0代表准备中 int32

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«PagedList«ExtractionInfoBean»»
201 Created -
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponseV1«PagedList«ExtractionInfoBean»»
名称 说明 类型
code 样例: "code" string
data 返回数据 PagedList«ExtractionInfoBean»
page Page
startIndex int32
prePage int32
nextPage int32
pageNo int32
htmlDisplay string
totalPages int32
pageSize int32
totalCount int32
list < ExtractionInfoBean >array
cost 运行时间 int32
createTime 创建时间 int64
errorMessage 错误信息 string
errorCode 错误码 string
appKey appkey string
projectId 对应项目ID int64
fileId 对应文件ID int64
status 对应抽提状态 int32
message 样例: "message" string

# 消耗

  • application/json

# 生成

  • */*
  • application/json

# HTTP请求示例

# 请求 path
https://api.bimface.com/feature-management/v1/domain/extraction-states
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# 请求 body
{
  "extractId" : 2444042312607712,
  "extractType" : "extractType",
  "fileId" : 1938888813662976,
  "projectId" : 10000000006016,
  "status" : 0
}

# HTTP响应示例

# 响应 200
{
  "code" : "code",
  "data" : {
    "list" : [ {
      "appKey" : "appKey",
      "cost" : 0,
      "createTime" : 1661942291567,
      "errorCode" : "errorCode",
      "errorMessage" : "errorMessage",
      "fileId" : 1938888813662976,
      "projectId" : 10000000006016,
      "status" : 0
    } ],
    "page" : {
      "htmlDisplay" : "string",
      "nextPage" : 0,
      "pageNo" : 0,
      "pageSize" : 0,
      "prePage" : 0,
      "startIndex" : 0,
      "totalCount" : 0,
      "totalPages" : 0
    }
  },
  "message" : "message"
}