创建文档版本
POST
https://open.feishu.cn/open-apis/drive/v1/files/{file_token}/versions
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 1068400 | Has no permission, please apply the file permission of reading or edition. | 无阅读/编辑权限,请申请源文档的阅读/编辑权限。 |
400 | 1068401 | Review no pass, the title has illegal content. | 标题审核不通过,含非法内容,请重新命名。 |
404 | 1068404 | Parent file does not exist, please check the file status. | 源文档不存在,请检查文档是否已删除。 |
400 | 1068410 | Params error, param [file_token] is wrong. | file_token 请求参数错误,请检查参数。 |
400 | 1068411 | Params error, param [obj_type] is wrong. | obj_type 请求参数错误,请检查参数。 |
400 | 1068425 | Request failed, please contact the engineer-https://applink.feishu.cn/TLJsX982. | 请求失败,请联系业务方oncall。 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://open.feishu.cn/open-apis/drive/v1/files/doxbcyvqZlSc9WlHvQMlSJwUrsb/versions' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "文档标题",
"version": "version1",
"parent_token": "1665739388",
"owner_id": "694699009591869450",
"creator_id": "694699009591869451",
"create_time": "1660708537",
"update_time": "1660708537",
"status": "0",
"obj_type": "docx",
"parent_type": "docx"
}'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"name": "文档标题",
"version": "version1",
"parent_token": "1665739388",
"owner_id": "694699009591869450",
"creator_id": "694699009591869451",
"create_time": "1660708537",
"update_time": "1660708537",
"status": "0",
"obj_type": "docx",
"parent_type": "docx"
}
}
请求参数
Path 参数
file_token
string
源文档token
示例值:
doxbcyvqZlSc9WlHvQMlSJwUrsb
Query 参数
user_id_type
string
可选
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
Body 参数application/json
返回响应
修改于 2023-01-13 06:35:59