# 获取文件路径
GET https://api.bimface.com/bdfs/data/v1/projects/{projectId}/fileItems/{fileItemId}/fileItemsPath
# 说明
通过接口,可根据文件项ID获得文件项所在的路径。
# 参数
# Header
| Authorization * | Bearer {accessToken} | string | 
# Path
| fileItemId * | 文件项ID | string | 
| projectId * | 项目ID | string | 
*为必填项
# 响应
| HTTP代码 | 说明 | 类型 | 
|---|---|---|
| 200 | OK | RestResponse«string» | 
| 401 | Unauthorized | - | 
| 403 | Forbidden | - | 
| 404 | Not Found | - | 
# 200响应参数
RestResponse«string»
 | 名称 | 说明 | 类型 | 
|---|---|---|
| code | 状态代码 | string | 
| data | 返回数据 | string | 
| message | 提示信息 | string | 
# 消耗
- application/json
# 生成
- application/json
- */*
# HTTP请求示例
# 请求 path
https://api.bimface.com/bdfs/data/v1/projects/10000000006016/fileItems/1938888813662976/fileItemsPath
# 请求 header
"Authorization: Bearer cn-e9725999-0b36-4c0e-bdca-38ea88888888"
# HTTP响应示例
# 响应 200
{
  "code" : "success",
  "data" : "/BIMFACE文件夹/sample.rvt",
  "message" : "success"
}