https://forge.autodesk.com/blog/how-patch-apis-work-and-some-tips-using-patch-apis
我已经按照上面的两个链接说明了如何修补项目的版本并更新其名称,但是出现错误。以下是我在Postman中输入的内容(version_id
中的URI
已被编码):
URI: https://developer.api.autodesk.com/data/v1/projects/:project_id/versions/:version_id
授权: Bearer *****************************
内容类型: application/vnd.api+json
身体
:{
"jsonapi": {
"version": "1.0"
},
"data": {
"type": "versions",
"id": *********************************************,
"attributes": {
"name": "AAA - My PDF file.pdf",
"displayName": "AAA - My PDF file.pdf"
}
}
}
我要更新的项目版本已被命名为AAA - My PDF file.pdf
,因此不应进行任何更新。但是当我发送请求时,出现以下错误。
错误:
{
"jsonapi": {
"version": "1.0"
},
"errors": [
{
"id": "30043cce-cfbe-4766-933c-fd9d888e574d",
"status": "400",
"code": "BAD_INPUT",
"title": "One or more input values in the request were bad",
"detail": "Request input is invalid for this operation."
}
]
}
有什么想法为什么我会出现此错误以及如何解决该错误?
答案 0 :(得分:1)
不幸的是,目前不支持BIM360 Doc项目的PATCHing,因此会出现错误。该错误消息可能更具体,而不是一般的验证失败消息,我将让Engineering进行相应的更新。
尝试使用A360集线器修补,它应能按预期工作。