获取版本列表
GET
/sdk/v2/collab-files/{fileId}/revisions获取文件版本列表信息。
:::info 提示
path 中的 shimo-files 改为 collab-files,原 shimo-files 仍可用
:::
请求参数
Path 参数
fileId
string
接入方文件 id
Header 参数
X-Shimo-Signature
string
必需
示例值:
{{signature}}
X-Shimo-Token
string
必需
示例值:
{{token}}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
array of:
id
integer
版本 id
label
string
版本 label
title
string
标题
docHistoryId
string
必需
对应侧边栏历史 id
createdAt
string
创建时间
updatedAt
string
更新时间
user
object
创建者信息
id
string
用户 id
name
string
用户名
示例
[
{
"id": 11089,
"label": "2021/6/7 星期一 14:33",
"title": "123",
"docHistoryId": "60bdbda2f0a8af000664d719",
"createdAt": "2021-06-07T06:33:13.000Z",
"updatedAt": "2021-06-07T06:33:13.000Z",
"user": {
"id": "user123",
"name": "testuser"
}
},
{
"id": 11090,
"label": "2021/6/7 星期一 14:33",
"title": "123",
"docHistoryId": "60bdbdd5f0a8af000664d71d",
"createdAt": "2021-06-07T06:33:59.000Z",
"updatedAt": "2021-06-07T06:33:59.000Z",
"user": {
"id": "user123",
"name": "testuser"
}
}
]
最后修改时间: 9 个月前