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.
Copy file name to clipboardExpand all lines: docs/CollaborationApi.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -961,7 +961,7 @@ Name | Type | Description | Notes
961
961
962
962
Create a document
963
963
964
-
Create a document. If the document is one of {'IFC', 'POINT_CLOUD', 'DWG', 'DXF', 'GLTF', 'OBJ'}, a model will be created and attached to this document Required scopes: document:write
964
+
Create a document. If the document is one of {'GLTF', 'OBJ', 'IFC', 'DWG', 'POINT_CLOUD', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
**type** | **String** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
8
-
**parentId** | **Number** | | [optional]
9
-
**createdAt** | **Date** | Creation date | [readonly]
**userPermission** | **Number** | Aggregate of group user permissions and folder default permission | [readonly]
11
+
**groupsPermissions** | [**[GroupFolderRead]**](GroupFolderRead.md) | List of group permissions | [readonly]
12
+
**id** | **Number** | | [readonly]
13
+
**updatedAt** | **Date** | Date of the last update | [readonly]
17
14
**nature** | **String** | Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
15
+
**parentId** | **Number** | | [optional]
16
+
**type** | **String** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [readonly]
17
+
**createdAt** | **Date** | Creation date | [readonly]
Copy file name to clipboardExpand all lines: src/api/CollaborationApi.js
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -868,7 +868,7 @@ export default class CollaborationApi {
868
868
869
869
/**
870
870
* Create a document
871
-
* Create a document. If the document is one of {'IFC', 'POINT_CLOUD', 'DWG', 'DXF', 'GLTF', 'OBJ'}, a model will be created and attached to this document Required scopes: document:write
871
+
* Create a document. If the document is one of {'GLTF', 'OBJ', 'IFC', 'DWG', 'POINT_CLOUD', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
872
872
* @param {Number} cloudPk A unique integer value identifying this cloud.
873
873
* @param {Number} projectPk A unique integer value identifying this project.
874
874
* @param {String} name Shown name of the file
@@ -936,7 +936,7 @@ export default class CollaborationApi {
936
936
937
937
/**
938
938
* Create a document
939
-
* Create a document. If the document is one of {'IFC', 'POINT_CLOUD', 'DWG', 'DXF', 'GLTF', 'OBJ'}, a model will be created and attached to this document Required scopes: document:write
939
+
* Create a document. If the document is one of {'GLTF', 'OBJ', 'IFC', 'DWG', 'POINT_CLOUD', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
940
940
* @param {Number} cloudPk A unique integer value identifying this cloud.
941
941
* @param {Number} projectPk A unique integer value identifying this project.
942
942
* @param {String} name Shown name of the file
@@ -3178,6 +3178,7 @@ export default class CollaborationApi {
3178
3178
* @param {String} opts.fileNameEndswith
3179
3179
* @param {String} opts.fileNameStartswith
3180
3180
* @param {Boolean} opts.hasVisa
3181
+
* @param {Array.<Number>} opts.idIn Multiple values may be separated by commas.
3181
3182
* @param {String} opts.name
3182
3183
* @param {String} opts.nameContains
3183
3184
* @param {String} opts.nameEndswith
@@ -3227,6 +3228,7 @@ export default class CollaborationApi {
0 commit comments