# 合并分片生成文件

POST https://api.bimface.com/bdfs/v1/data/projects/{project-id}/file-items/multi-part-files/merge

# 说明

在将所有数据Part都上传完成后,调用本接口来合并所有碎片,完成整个文件的分片上传。

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
projectId * 项目ID string
*为必填项
# Body
id* 初始化分片上传时返回的文件ID string
parentId* 父文件夹ID(parentId和parentPath,必须二选一填入) string
parentPath* 父文件夹路径(parentId和parentPath,必须二选一填入) string

*为必填项

# 响应

HTTP代码 说明 类型
200 OK GeneralResponseV1«FileItemDTOV1»
201 Created -
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponseV1«FileItemDTOV1»
名称 说明 类型
code 状态代码 string
data 返回数据 FileItemDTOV1
appKey appKey string
createTime 文件创建时间 string
current 是否为当前版本 boolean
fileId 文件ID string
fileItemId 文件项ID string
fileItemName 文件项名称 string
folder 是否为文件夹 boolean
id 文件ID string
length 文件大小 int64
md5 md5 string
name 文件名称 string
originalCreateTime 文件项创建时间 string
parentId 父文件夹ID string
physicalIndex 对象存储索引 string
projectId 项目ID string
status 文件状态 string
storeId 内部存储唯一标识 string
suffix 文件后缀 string
updateTime 文件更新时间 string
uploadMode 上传模式 string
version 文件版本号 int32
message 提示信息 string

# 消耗

  • application/json

# 生成

  • application/json
  • */*

# HTTP请求示例

# 请求 path
https://api.bimface.com/bdfs/v1/data/projects/10000000006016/file-items/multi-part-files/merge
# 请求 header
"Authorization: Bearer cn-e9725999-0b36-4c0e-bdca-38ea88888888"
# 请求 body
{
  "id" : "1938888813662976",
  "parentId" : "10000000006016",
  "parentPath" : "/"
}

# HTTP响应示例

# 响应 200
{
  "code" : "bimfaceservice-0000",
  "data" : {
    "appKey" : "odatvZYUSAWMbdUjTU8HoZXB9tFt6123",
    "createTime" : "2022-09-27T07:53:28.408Z",
    "id": "1938888813662976",
    "fileId": "1938888813662976",
    "fileItemId" : "1938888813662976",
    "name": "sample.rvt",
    "fileItemName": "sample.rvt",
    "suffix" : "rvt",           
    "length" : 100000,  
    "projectId" : "10000000006016",
    "parentId" : "10000000006016",
    "folder" : false,
    "storeId" : "234234233234",
    "version" : 1,
    "status" : "success",
    "uploadMode" : "MULTIPART",
    "md5" : "sdfhskbvnksdiuewriusbndskudf",       
    "physicalIndex" : "sdfsdf",
    "updateTime" : "2022-09-27T07:53:28.408Z",
    "current": true,
    "originalCreateTime": "2022-09-27T07:53:28.408Z"
  },
  "message" : null
}