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.
[**getProjectCreatorVisas**](CollaborationApi.md#getProjectCreatorVisas) | **GET** /cloud/{cloud_pk}/project/{project_pk}/me/visa/creator | List visas created by user
60
60
[**getProjectDMSTree**](CollaborationApi.md#getProjectDMSTree) | **GET** /cloud/{cloud_pk}/project/{id}/dms-tree | Retrieve the complete DMS tree
61
61
[**getProjectInvitations**](CollaborationApi.md#getProjectInvitations) | **GET** /cloud/{cloud_pk}/project/{project_pk}/invitation | Retrieve all pending invitations in the project
62
-
[**getProjectSize**](CollaborationApi.md#getProjectSize) | **GET** /cloud/{cloud_pk}/project/{id}/size | Get size of all ifc files in the project
62
+
[**getProjectSize**](CollaborationApi.md#getProjectSize) | **GET** /cloud/{cloud_pk}/project/{id}/size | Get size of all model files in the project
63
63
[**getProjectSubTree**](CollaborationApi.md#getProjectSubTree) | **GET** /cloud/{cloud_pk}/project/subtree | Retrieve the complete projects tree of the cloud
64
64
[**getProjectTree**](CollaborationApi.md#getProjectTree) | **GET** /cloud/{cloud_pk}/project/{id}/tree | Retrieve the complete DMS tree
65
65
[**getProjectUsers**](CollaborationApi.md#getProjectUsers) | **GET** /cloud/{cloud_pk}/project/{project_pk}/user | Retrieve all users in a project, or a list with a filter by email
@@ -463,7 +463,7 @@ null (empty response body)
463
463
464
464
Create a classification
465
465
466
-
Bulk create available. You can either post an object or a list of objects. Is you post a list, the response will be a list (in the same order) of created objects or of errors if any If at least one create succeeded, the status code will be 201. If every create failed, the status code we'll be 400 with the list of errors If created classification already exists, it will not be duplicated and the previous one will be returned. You also can add a 'classification' filter on this endpoint. By ex: /classification?name='untec'. The name is case sensitive Required scopes: ifc:write
466
+
Bulk create available. You can either post an object or a list of objects. Is you post a list, the response will be a list (in the same order) of created objects or of errors if any If at least one create succeeded, the status code will be 201. If every create failed, the status code we'll be 400 with the list of errors If created classification already exists, it will not be duplicated and the previous one will be returned. You also can add a 'classification' filter on this endpoint. By ex: /classification?name='untec'. The name is case sensitive Required scopes: ifc:write, model:write
467
467
468
468
### Example
469
469
@@ -726,7 +726,8 @@ let opts = {
726
726
'fileName':"fileName_example", // String | Full name of the file
727
727
'description':"description_example", // String | Description of the file
728
728
'size':56, // Number | Size of the file.
729
-
'ifcSource':"ifcSource_example"// String | Define the ifc.source field if the upload is an IFC
729
+
'modelSource':"modelSource_example", // String | Define the model.source field if the upload is a Model (IFC, PDF, DWG...)
730
+
'ifcSource':"ifcSource_example"// String | DEPRECATED: Use 'model_source' instead. Define the model.source field if the upload is a Model (IFC, PDF, DWG...)
console.log('API called successfully. Returned data: '+ data);
@@ -751,7 +752,8 @@ Name | Type | Description | Notes
751
752
**fileName** | **String**| Full name of the file | [optional]
752
753
**description** | **String**| Description of the file | [optional]
753
754
**size** | **Number**| Size of the file. | [optional]
754
-
**ifcSource** | **String**| Define the ifc.source field if the upload is an IFC | [optional]
755
+
**modelSource** | **String**| Define the model.source field if the upload is a Model (IFC, PDF, DWG...) | [optional]
756
+
**ifcSource** | **String**| DEPRECATED: Use 'model_source' instead. Define the model.source field if the upload is a Model (IFC, PDF, DWG...) | [optional]
755
757
756
758
### Return type
757
759
@@ -1201,7 +1203,7 @@ Name | Type | Description | Notes
1201
1203
1202
1204
Delete a classification
1203
1205
1204
-
All elements having this classification will lose it Required scopes: ifc:write
1206
+
All elements having this classification will lose it Required scopes: ifc:write, model:write
1205
1207
1206
1208
### Example
1207
1209
@@ -2049,7 +2051,7 @@ null (empty response body)
2049
2051
2050
2052
Retrieve a classification
2051
2053
2052
-
Retrieve a classification Required scopes: ifc:read
2054
+
Retrieve a classification Required scopes: ifc:read, model:read
2053
2055
2054
2056
### Example
2055
2057
@@ -2109,7 +2111,7 @@ Name | Type | Description | Notes
2109
2111
2110
2112
Retrieve all classifications
2111
2113
2112
-
Retrieve all classifications of all models in the project Required scopes: ifc:read
2114
+
Retrieve all classifications of all models in the project Required scopes: ifc:read, model:read
2113
2115
2114
2116
### Example
2115
2117
@@ -3389,7 +3391,7 @@ Name | Type | Description | Notes
3389
3391
3390
3392
> ProjectSize getProjectSize(cloudPk, id)
3391
3393
3392
-
Get size of all ifc files in the project
3394
+
Get size of all model files in the project
3393
3395
3394
3396
Returns the size of the project in Bytes
3395
3397
@@ -4587,7 +4589,7 @@ null (empty response body)
4587
4589
4588
4590
Update some fields of a classification
4589
4591
4590
-
Update some fields of a classification Required scopes: ifc:write
4592
+
Update some fields of a classification Required scopes: ifc:write, model:write
Copy file name to clipboardExpand all lines: docs/Document.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,31 @@ Name | Type | Description | Notes
16
16
**size** | **Number** | Size of the file. | [optional]
17
17
**createdAt** | **Date** | Creation date | [optional][readonly]
18
18
**updatedAt** | **Date** | Date of the last update | [optional][readonly]
19
-
**ifcSource** | **String** | Define the ifc.source field if the upload is an IFC | [optional]
20
-
**ifcId** | **String** | | [optional][readonly]
19
+
**modelSource** | **String** | Define the model.source field if the upload is a Model (IFC, PDF, DWG...) | [optional]
20
+
**modelId** | **String** | | [optional][readonly]
21
+
**ifcSource** | **String** | DEPRECATED: Use 'model_source' instead. Define the model.source field if the upload is a Model (IFC, PDF, DWG...) | [optional]
22
+
**ifcId** | **String** | DEPRECATED: Use 'model_id' instead. | [optional][readonly]
21
23
**userPermission** | **Number** | Aggregate of group user permissions and folder default permission | [optional][readonly]
**type** | **String** | Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [optional][readonly]
9
+
**type** | **String** | DEPRECATED: Use 'nature' instead. Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [optional][readonly]
10
+
**nature** | **String** | Value is \"Folder\". It is usefull to parse the tree and discriminate folders and files | [optional][readonly]
10
11
**name** | **String** | Name of the folder |
11
12
**createdAt** | **Date** | Creation date | [optional][readonly]
12
13
**updatedAt** | **Date** | Date of the last update | [optional][readonly]
0 commit comments