You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*bimdata.BcfApi* | [**deleteTopic**](docs/BcfApi.md#deleteTopic) | **DELETE** /bcf/2.1/projects/{projects_pk}/topics/{guid} | Delete a topic
162
162
*bimdata.BcfApi* | [**deleteViewpoint**](docs/BcfApi.md#deleteViewpoint) | **DELETE** /bcf/2.1/projects/{projects_pk}/topics/{topics_guid}/viewpoints/{guid} | Delete a Viewpoint
163
163
*bimdata.BcfApi* | [**downloadBcfExport**](docs/BcfApi.md#downloadBcfExport) | **GET** /bcf/2.1/projects/{id}/export | Export project's topics in bcf-xml format
164
+
*bimdata.BcfApi* | [**downloadBcfExportXlsx**](docs/BcfApi.md#downloadBcfExportXlsx) | **GET** /bcf/2.1/projects/{id}/export-xlsx | Export project's topics in excel format
164
165
*bimdata.BcfApi* | [**fullUpdateBcfProject**](docs/BcfApi.md#fullUpdateBcfProject) | **PUT** /bcf/2.1/projects/{id} | Update all fields of a BCF project
165
166
*bimdata.BcfApi* | [**fullUpdateComment**](docs/BcfApi.md#fullUpdateComment) | **PUT** /bcf/2.1/projects/{projects_pk}/topics/{topics_guid}/comments/{guid} | Update all fields of a comment
166
167
*bimdata.BcfApi* | [**fullUpdateFullTopic**](docs/BcfApi.md#fullUpdateFullTopic) | **PUT** /bcf/2.1/projects/{projects_pk}/full-topic/{guid} | Update all fields of a topic
[**deleteTopic**](BcfApi.md#deleteTopic) | **DELETE** /bcf/2.1/projects/{projects_pk}/topics/{guid} | Delete a topic
25
25
[**deleteViewpoint**](BcfApi.md#deleteViewpoint) | **DELETE** /bcf/2.1/projects/{projects_pk}/topics/{topics_guid}/viewpoints/{guid} | Delete a Viewpoint
26
26
[**downloadBcfExport**](BcfApi.md#downloadBcfExport) | **GET** /bcf/2.1/projects/{id}/export | Export project's topics in bcf-xml format
27
+
[**downloadBcfExportXlsx**](BcfApi.md#downloadBcfExportXlsx) | **GET** /bcf/2.1/projects/{id}/export-xlsx | Export project's topics in excel format
27
28
[**fullUpdateBcfProject**](BcfApi.md#fullUpdateBcfProject) | **PUT** /bcf/2.1/projects/{id} | Update all fields of a BCF project
28
29
[**fullUpdateComment**](BcfApi.md#fullUpdateComment) | **PUT** /bcf/2.1/projects/{projects_pk}/topics/{topics_guid}/comments/{guid} | Update all fields of a comment
29
30
[**fullUpdateFullTopic**](BcfApi.md#fullUpdateFullTopic) | **PUT** /bcf/2.1/projects/{projects_pk}/full-topic/{guid} | Update all fields of a topic
@@ -1363,6 +1364,67 @@ Name | Type | Description | Notes
1363
1364
-**Accept**: application/json
1364
1365
1365
1366
1367
+
## downloadBcfExportXlsx
1368
+
1369
+
> BcfProject downloadBcfExportXlsx(id)
1370
+
1371
+
Export project's topics in excel format
1372
+
1373
+
This is not a standard route. Export project's topics in excel format Required scopes: bcf:read
1374
+
1375
+
### Example
1376
+
1377
+
```javascript
1378
+
importbimdatafrom'@bimdata/bimdata-api-client';
1379
+
let defaultClient =bimdata.ApiClient.instance;
1380
+
// Configure API key authorization: ApiKey
1381
+
let ApiKey =defaultClient.authentications['ApiKey'];
1382
+
ApiKey.apiKey='YOUR API KEY';
1383
+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
1384
+
//ApiKey.apiKeyPrefix = 'Token';
1385
+
// Configure OAuth2 access token for authorization: BIMData_Connect
1386
+
let BIMData_Connect =defaultClient.authentications['BIMData_Connect'];
1387
+
BIMData_Connect.accessToken='YOUR ACCESS TOKEN';
1388
+
// Configure OAuth2 access token for authorization: BIMData_Connect
1389
+
let BIMData_Connect =defaultClient.authentications['BIMData_Connect'];
1390
+
BIMData_Connect.accessToken='YOUR ACCESS TOKEN';
1391
+
// Configure API key authorization: Bearer
1392
+
let Bearer =defaultClient.authentications['Bearer'];
1393
+
Bearer.apiKey='YOUR API KEY';
1394
+
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
1395
+
//Bearer.apiKeyPrefix = 'Token';
1396
+
1397
+
let apiInstance =newbimdata.BcfApi();
1398
+
let id =56; // Number | A unique integer value identifying this project.
Copy file name to clipboardExpand all lines: docs/CollaborationApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -956,7 +956,7 @@ Name | Type | Description | Notes
956
956
957
957
Create a document
958
958
959
-
Create a document. If the document is one of {'IFC', 'GLTF', 'POINT_CLOUD', 'DXF', 'OBJ', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
959
+
Create a document. If the document is one of {'OBJ', 'DXF', 'IFC', 'GLTF', 'POINT_CLOUD', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
0 commit comments