BIM 360和Revit API

时间:2019-04-05 13:21:39

标签: api autodesk-forge revit bim

我试图了解有关Revit API与BIM 360一起使用的更多信息。我知道我可以确定isCloudInModel(2019 API中可用,而不是2018 API中可用,希望这次有意使用)并使用这些策略this post获取路径。

BIM 360模型似乎未订阅Sync事件,我难以理解我是否可以订阅与同步,保存,打开或其他任何事情有关的事件。

是否存在有关BIM 360上托管的API和模型限制的参考?

1 个答案:

答案 0 :(得分:0)

通过Application / ControlledApplication类,您可以使用此方法。您只需要具有逻辑,即可查看触发DocumentSynchronizing,DocumentSaving类型Events的应用程序是否为BIM360模型。您可以使用该方法找到路径。

通过Forge API,通过数据管理API,您可以使用具有以下功能的PostModelJob端点:

  

每次将当前模型与中央模型同步时,都会将data属性设置为null。当您使用PublishModel命令将最新版本发布到BIM 360 Docs时,它将状态设置为“处理中”或“完成”。

这将为您提供有关模型是否已同步的信息。您还必须使用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"
  }
}