通过 Application/ControlledApplication 类,您可以使用此方法。您只需要了解触发 DocumentSynchronizing、DocumentSaving 类型事件的应用程序是否为 BIM360 模型的逻辑即可。您可以通过如何找到路径来做到这一点。
使用 Forge API,通过数据管理 API,您可以使用具有以下功能的 PostModelJob 端点:
每次将当前模型与中心模型同步时,都会将数据属性设置为 null。当您将最新版本发布到 BIM 360 Docs(使用 PublishModel 命令)时,它会将状态设置为处理中或完成。
这将为您提供有关模型是否已同步的信息。您还必须使用 BIM 360 Docs 而不是 BIM 360 Team。
Successful Retrieval of C4R Publish Status - Model Needs Publishing (200)
Note that if you have updated the central model, the data attribute is set to null until you publish it.
Request
curl -X POST -v "https://developer.api.autodesk.com/data/v1/projects/b.project.id.xyz/commands/" -H "Authorization: Bearer kEnG562yz5bhE9igXf2YTcZ2bu0z" -H "Content-Type: application/vnd.api+json" -d '
{
"jsonapi": {
"version": "1.0"
},
"data": {
"type": "commands",
"attributes": {
"extension": {
"type": "commands:autodesk.bim360:C4RModelGetPublishJob",
"version": "1.0.0"
}
},
"relationships": {
"resources": {
"data": [ { "type": "items", "id": "urn:adsk.wip:dm.file:hC6k4hndRWaeIVhIjvHu8w" } ]
}
}
}
}'
Show Less
Response
{
"data": null
"jsonapi": {
"version": "1.0"
}
}