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
Copy file name to clipboardExpand all lines: bimdata_api_client/api/collaboration_api.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8373,7 +8373,7 @@ def create_document(
8373
8373
):
8374
8374
"""Create a document # noqa: E501
8375
8375
8376
-
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 # noqa: E501
8376
+
Create a document. If the document is one of {'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
8377
8377
This method makes a synchronous HTTP request by default. To make an
Copy file name to clipboardExpand all lines: docs/BcfApi.md
+16-4Lines changed: 16 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2457,7 +2457,7 @@ Name | Type | Description | Notes
2457
2457
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
2458
2458
2459
2459
# **download_bcf_export_xlsx**
2460
-
> BcfProject download_bcf_export_xlsx(id)
2460
+
> file_type download_bcf_export_xlsx(id)
2461
2461
2462
2462
Export project's topics in excel format
2463
2463
@@ -2474,7 +2474,6 @@ This is not a standard route. Export project's topics in excel format Required
2474
2474
import time
2475
2475
import bimdata_api_client
2476
2476
from bimdata_api_client.api import bcf_api
2477
-
from bimdata_api_client.model.bcf_project import BcfProject
2478
2477
from pprint import pprint
2479
2478
# Defining the host is optional and defaults to http://localhost
2480
2479
# See configuration.py for a list of all supported configuration parameters.
@@ -2516,6 +2515,8 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
2516
2515
# Create an instance of the API class
2517
2516
api_instance = bcf_api.BcfApi(api_client)
2518
2517
id=1# int | A unique integer value identifying this project.
2518
+
format="format_example"# str | topic format to export, comma separated. Default = standard (optional)
2519
+
topics ="topics_example"# str | topic guids to export, comma separated. Default = all (optional)
2519
2520
2520
2521
# example passing only required values which don't have defaults set
2521
2522
try:
@@ -2524,6 +2525,15 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
2524
2525
pprint(api_response)
2525
2526
except bimdata_api_client.ApiException as e:
2526
2527
print("Exception when calling BcfApi->download_bcf_export_xlsx: %s\n"% e)
2528
+
2529
+
# example passing only required values which don't have defaults set
**id** | **int**| A unique integer value identifying this project. |
2545
+
**format** | **str**| topic format to export, comma separated. Default = standard | [optional]
2546
+
**topics** | **str**| topic guids to export, comma separated. Default = all | [optional]
2535
2547
2536
2548
### Return type
2537
2549
2538
-
[**BcfProject**](BcfProject.md)
2550
+
**file_type**
2539
2551
2540
2552
### Authorization
2541
2553
@@ -2551,7 +2563,7 @@ Name | Type | Description | Notes
2551
2563
2552
2564
| Status code | Description | Response headers |
2553
2565
|-------------|-------------|------------------|
2554
-
**200** | | - |
2566
+
**200** | bcf Excel file | - |
2555
2567
**401** | The authentication failed. Your token may be expired, missing or malformed | - |
2556
2568
**403** | You don't have the authorization to access this resource. Check if the resource is exclusive to users or app (eg: /user is exclusive to users) or if your user has the right to access this resource. | - |
2557
2569
**404** | The resource does not exist or you don't have the right to see if the resource exists | - |
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
@@ -1527,7 +1527,7 @@ Name | Type | Description | Notes
1527
1527
1528
1528
Create a document
1529
1529
1530
-
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
1530
+
Create a document. If the document is one of {'POINT_CLOUD', 'IFC', 'GLTF', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
0 commit comments