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
@@ -8860,7 +8860,7 @@ def create_document(
8860
8860
):
8861
8861
"""Create a document # noqa: E501
8862
8862
8863
-
Create a document. If the document is one of {'OBJ', 'IFC', 'POINT_CLOUD', 'GLTF', 'DXF', 'DWG'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
8863
+
Create a document. If the document is one of {'OBJ', 'GLTF', 'IFC', 'DWG', 'POINT_CLOUD', 'DXF'}, a model will be created and attached to this document Required scopes: document:write # noqa: E501
8864
8864
This method makes a synchronous HTTP request by default. To make an
**filter** | **str**| OData filters as defined in BCF spec | [optional]
4355
+
**orderby** | **str**| OData orderby as defined in BCF spec | [optional]
4339
4356
**format** | **str**| | [optional]
4340
4357
**ifcs** | **[int]**| | [optional]
4341
4358
**img_format** | **str**| All snapshot_data will be returned as url instead of base64 | [optional] if omitted the server will use the default value of "url"
@@ -5208,6 +5225,8 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
5208
5225
# Create an instance of the API class
5209
5226
api_instance = bcf_api.BcfApi(api_client)
5210
5227
projects_pk =1# int |
5228
+
filter="$filter_example"# str | OData filters as defined in BCF spec (optional)
5229
+
orderby ="$orderby_example"# str | OData orderby as defined in BCF spec (optional)
5211
5230
format="format_example"# str | (optional)
5212
5231
ifcs = [
5213
5232
1,
@@ -5228,7 +5247,7 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
Copy file name to clipboardExpand all lines: docs/CollaborationApi.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1482,9 +1482,9 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
1482
1482
id=1# int | A unique integer value identifying this project.
1483
1483
write_folder_request = [
1484
1484
WriteFolderRequest(
1485
+
default_permission=1,
1485
1486
parent_id=1,
1486
1487
name="name_example",
1487
-
default_permission=1,
1488
1488
children=[
1489
1489
WriteFolderRequest(),
1490
1490
],
@@ -1541,7 +1541,7 @@ Name | Type | Description | Notes
1541
1541
1542
1542
Create a document
1543
1543
1544
-
Create a document. If the document is one of {'OBJ', 'IFC', 'POINT_CLOUD', 'GLTF', 'DXF', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
1544
+
Create a document. If the document is one of {'OBJ', 'GLTF', 'IFC', 'DWG', 'POINT_CLOUD', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
0 commit comments