简体   繁体   English

如何从 Bim 360 计划中提取元数据?

[英]How to extract MetaData from Bim 360 Plans?

I can see a table of results under Bim 360 Plans which includes a fields like Name, Title, Set, Version, LastUpdated, UpdatedBy.我可以在 Bim 360 计划下看到一个结果表,其中包括名称、标题、集合、版本、上次更新、更新者等字段。 See screenshot below:请参见下面的屏幕截图:

BIM 360 Plans BIM 360 计划

However I cannot get all the fields from the API. Title, Set and Version are missing.但是我无法从 API 中获取所有字段。缺少标题、集和版本。

"attributes": { "displayName": "A101 - Site Plan", "createTime": "2021-10-15T14:38:17.0000000Z", "createUserId": "P49WLFCASZNJ", "createUserName": "Walker Lockard", "lastModifiedTime": "2021-10-15T14:38:17.0000000Z", "lastModifiedUserId": "P49WLFCASZNJ", "lastModifiedUserName": "Walker Lockard", "hidden": false, "reserved": false, “属性”:{ “displayName”:“A101 - 场地规划”,“createTime”:“2021-10-15T14:38:17.0000000Z”,“createUserId”:“P49WLFCASZNJ”,“createUserName”:“Walker Lockard”, “lastModifiedTime”:“2021-10-15T14:38:17.0000000Z”,“lastModifiedUserId”:“P49WLFCASZNJ”,“lastModifiedUserName”:“Walker Lockard”,“隐藏”:假,“保留”:假,

Question: Which API do I use to extract the Bim 360 Plans Data and do you have an example CURL for that to extract Title, Set and Version?问题:我使用哪个 API 来提取 Bim 360 计划数据?您是否有用于提取标题、集和版本的示例 CURL?

Sorry, the information you provided is limited.抱歉,您提供的信息有限。 From my test, you will need to find the versionNumber from its version tip, which type is versions .在我的测试中,您需要从其版本提示中找到versionNumber ,类型为versions like the below.像下面这样。 The snippet your share is an item that type is items .您分享的片段是一个类型为items的项目。

{
    "type": "versions",
    "id": "urn:adsk.wipprod:fs.file:vf.34Xvlw1jTcSQ_XkIVh07cg?version=2",
    "attributes": {
        "name": "3 Appr. Date I ita Extraction And Multileaders Samole ■",
        "displayName": "3 Appr. Date I ita Extraction And Multileaders Samole ■",
        "createTime": "2018-12-11T08:04:08.0000000Z",
        "createUserId": "",
        "createUserName": "",
        "lastModifiedTime": "2020-12-23T07:38:03.0000000Z",
        "lastModifiedUserName": "Eason Kang",
        "versionNumber": 2,
// ...

Unfortunately, there is no API that supports getting Sets and title at this moment.遗憾的是,目前没有支持获取Setstitle的API。 We apologize for the inconveniences.对于给您带来的不便,我们深表歉意。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM