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
{{ message }}
This repository was archived by the owner on Nov 18, 2025. It is now read-only.
*bimdata.CollaborationApi* | [**updateCloudUser**](docs/CollaborationApi.md#updateCloudUser) | **PATCH** /cloud/{cloud_pk}/user/{id} | Change the user role in the cloud
326
326
*bimdata.CollaborationApi* | [**updateDocument**](docs/CollaborationApi.md#updateDocument) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/document/{id} | Update some fields of the document
327
327
*bimdata.CollaborationApi* | [**updateFolder**](docs/CollaborationApi.md#updateFolder) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/folder/{id} | Update some fields of a folder
328
-
*bimdata.CollaborationApi* | [**updateGroupFolder**](docs/CollaborationApi.md#updateGroupFolder) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/folder/{folder_pk}/group/{id} | Update the permission of a group on a folder
328
+
*bimdata.CollaborationApi* | [**updateGroupFolder**](docs/CollaborationApi.md#updateGroupFolder) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/folder/{folder_pk}/group/{id} | Update the permission of a group on a folder. When propagate is set to True, the permission of all children in the folder will be updated.
329
329
*bimdata.CollaborationApi* | [**updateManageGroup**](docs/CollaborationApi.md#updateManageGroup) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/group/{id} | Update some fields of a group
330
330
*bimdata.CollaborationApi* | [**updateProject**](docs/CollaborationApi.md#updateProject) | **PATCH** /cloud/{cloud_pk}/project/{id} | Update some fields of a project
331
331
*bimdata.CollaborationApi* | [**updateProjectAccessToken**](docs/CollaborationApi.md#updateProjectAccessToken) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/access-token/{token} | Update some fields of a token
[**updateCloudUser**](CollaborationApi.md#updateCloudUser) | **PATCH** /cloud/{cloud_pk}/user/{id} | Change the user role in the cloud
102
102
[**updateDocument**](CollaborationApi.md#updateDocument) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/document/{id} | Update some fields of the document
103
103
[**updateFolder**](CollaborationApi.md#updateFolder) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/folder/{id} | Update some fields of a folder
104
-
[**updateGroupFolder**](CollaborationApi.md#updateGroupFolder) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/folder/{folder_pk}/group/{id} | Update the permission of a group on a folder
104
+
[**updateGroupFolder**](CollaborationApi.md#updateGroupFolder) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/folder/{folder_pk}/group/{id} | Update the permission of a group on a folder. When propagate is set to True, the permission of all children in the folder will be updated.
105
105
[**updateManageGroup**](CollaborationApi.md#updateManageGroup) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/group/{id} | Update some fields of a group
106
106
[**updateProject**](CollaborationApi.md#updateProject) | **PATCH** /cloud/{cloud_pk}/project/{id} | Update some fields of a project
107
107
[**updateProjectAccessToken**](CollaborationApi.md#updateProjectAccessToken) | **PATCH** /cloud/{cloud_pk}/project/{project_pk}/access-token/{token} | Update some fields of a token
@@ -954,7 +954,7 @@ Name | Type | Description | Notes
954
954
955
955
Create a document
956
956
957
-
Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'DXF', 'OBJ', 'IFC', 'GLTF', 'DAE', 'BFX'}, a model will be created and attached to this document Required scopes: document:write
957
+
Create a document. If the document is one of {'POINT_CLOUD', 'DAE', 'GLTF', 'IFC', 'OBJ', 'DWG', 'BFX', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
958
958
959
959
### Example
960
960
@@ -6341,7 +6341,7 @@ Name | Type | Description | Notes
6341
6341
6342
6342
Update some fields of a folder
6343
6343
6344
-
Update some fields of a folder. Only project admins can update the `default_permission` field. `default_permission` choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When this route is used, the permission of all children in the folder will be updated unless a child has already been updated with this route. In this case, if the updated permission is the same as the previously modified child's, the child will lose its \"independence\" and follow the parent's future permission when it is modified again. Caution: The 'default_permission' field is not applied to users belonging to one or more groups. Required scopes: document:write
6344
+
Update some fields of a folder. Only project admins can update the `default_permission` field. `default_permission` choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When propagate is set to True, the permission of all children in the folder will be updated. Caution: The 'default_permission' field is not applied to users belonging to one or more groups. Required scopes: document:write
6345
6345
6346
6346
### Example
6347
6347
@@ -6408,9 +6408,9 @@ Name | Type | Description | Notes
Update the permission of a group on a folder. When propagate is set to True, the permission of all children in the folder will be updated.
6412
6412
6413
-
Update the permission of a group on a folder. Permissions choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When this route is used, the permission of all children in the folder will be updated unless a child has already been updated with this route. In this case, if the updated permission is the same as the previously modified child's, the child will lose its \"independence\" and follow the parent's future permission when it is modified again. Required scopes: org:manage
6413
+
Update the permission of a group on a folder. Permissions choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRITE, None: Default value (See the default_permission field of the folder) ``` When propagate is set to True, the permission of all children in the folder will be updated. Required scopes: org:manage
Copy file name to clipboardExpand all lines: src/api/CollaborationApi.js
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -857,7 +857,7 @@ export default class CollaborationApi {
857
857
858
858
/**
859
859
* Create a document
860
-
* Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'DXF', 'OBJ', 'IFC', 'GLTF', 'DAE', 'BFX'}, a model will be created and attached to this document Required scopes: document:write
860
+
* Create a document. If the document is one of {'POINT_CLOUD', 'DAE', 'GLTF', 'IFC', 'OBJ', 'DWG', 'BFX', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
861
861
* @param {Number} cloudPk A unique integer value identifying this cloud.
862
862
* @param {Number} projectPk A unique integer value identifying this project.
863
863
* @param {String} name Shown name of the file
@@ -925,7 +925,7 @@ export default class CollaborationApi {
925
925
926
926
/**
927
927
* Create a document
928
-
* Create a document. If the document is one of {'DWG', 'POINT_CLOUD', 'DXF', 'OBJ', 'IFC', 'GLTF', 'DAE', 'BFX'}, a model will be created and attached to this document Required scopes: document:write
928
+
* Create a document. If the document is one of {'POINT_CLOUD', 'DAE', 'GLTF', 'IFC', 'OBJ', 'DWG', 'BFX', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
929
929
* @param {Number} cloudPk A unique integer value identifying this cloud.
930
930
* @param {Number} projectPk A unique integer value identifying this project.
931
931
* @param {String} name Shown name of the file
@@ -5868,7 +5868,7 @@ export default class CollaborationApi {
5868
5868
5869
5869
/**
5870
5870
* Update some fields of a folder
5871
-
* Update some fields of a folder. Only project admins can update the `default_permission` field. `default_permission` choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When this route is used, the permission of all children in the folder will be updated unless a child has already been updated with this route. In this case, if the updated permission is the same as the previously modified child's, the child will lose its \"independence\" and follow the parent's future permission when it is modified again. Caution: The 'default_permission' field is not applied to users belonging to one or more groups. Required scopes: document:write
5871
+
* Update some fields of a folder. Only project admins can update the `default_permission` field. `default_permission` choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When propagate is set to True, the permission of all children in the folder will be updated. Caution: The 'default_permission' field is not applied to users belonging to one or more groups. Required scopes: document:write
5872
5872
* @param {Number} cloudPk A unique integer value identifying this cloud.
5873
5873
* @param {Number} id A unique integer value identifying this folder.
5874
5874
* @param {Number} projectPk A unique integer value identifying this project.
@@ -5917,7 +5917,7 @@ export default class CollaborationApi {
5917
5917
5918
5918
/**
5919
5919
* Update some fields of a folder
5920
-
* Update some fields of a folder. Only project admins can update the `default_permission` field. `default_permission` choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When this route is used, the permission of all children in the folder will be updated unless a child has already been updated with this route. In this case, if the updated permission is the same as the previously modified child's, the child will lose its \"independence\" and follow the parent's future permission when it is modified again. Caution: The 'default_permission' field is not applied to users belonging to one or more groups. Required scopes: document:write
5920
+
* Update some fields of a folder. Only project admins can update the `default_permission` field. `default_permission` choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When propagate is set to True, the permission of all children in the folder will be updated. Caution: The 'default_permission' field is not applied to users belonging to one or more groups. Required scopes: document:write
5921
5921
* @param {Number} cloudPk A unique integer value identifying this cloud.
5922
5922
* @param {Number} id A unique integer value identifying this folder.
5923
5923
* @param {Number} projectPk A unique integer value identifying this project.
@@ -5934,8 +5934,8 @@ export default class CollaborationApi {
5934
5934
5935
5935
5936
5936
/**
5937
-
* Update the permission of a group on a folder
5938
-
* Update the permission of a group on a folder. Permissions choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When this route is used, the permission of all children in the folder will be updated unless a child has already been updated with this route. In this case, if the updated permission is the same as the previously modified child's, the child will lose its \"independence\" and follow the parent's future permission when it is modified again. Required scopes: org:manage
5937
+
* Update the permission of a group on a folder. When propagate is set to True, the permission of all children in the folder will be updated.
5938
+
* Update the permission of a group on a folder. Permissions choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRITE, None: Default value (See the default_permission field of the folder) ``` When propagate is set to True, the permission of all children in the folder will be updated. Required scopes: org:manage
5939
5939
* @param {Number} cloudPk A unique integer value identifying this cloud.
5940
5940
* @param {Number} folderPk
5941
5941
* @param {Number} id A unique integer value identifying this group folder.
@@ -5989,8 +5989,8 @@ export default class CollaborationApi {
5989
5989
}
5990
5990
5991
5991
/**
5992
-
* Update the permission of a group on a folder
5993
-
* Update the permission of a group on a folder. Permissions choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRTIE ``` When this route is used, the permission of all children in the folder will be updated unless a child has already been updated with this route. In this case, if the updated permission is the same as the previously modified child's, the child will lose its \"independence\" and follow the parent's future permission when it is modified again. Required scopes: org:manage
5992
+
* Update the permission of a group on a folder. When propagate is set to True, the permission of all children in the folder will be updated.
5993
+
* Update the permission of a group on a folder. Permissions choices are : ``` 1: ACCESS_DENIED, 50: READ_ONLY, 100: READ_WRITE, None: Default value (See the default_permission field of the folder) ``` When propagate is set to True, the permission of all children in the folder will be updated. Required scopes: org:manage
5994
5994
* @param {Number} cloudPk A unique integer value identifying this cloud.
5995
5995
* @param {Number} folderPk
5996
5996
* @param {Number} id A unique integer value identifying this group folder.
0 commit comments