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
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -955,7 +955,7 @@ Name | Type | Description | Notes
955
955
956
956
Create a document
957
957
958
-
Create a document. If the document is one of {'IFC', 'GLTF', 'POINT_CLOUD', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
958
+
Create a document. If the document is one of {'DXF', 'IFC', 'GLTF', 'OBJ', 'POINT_CLOUD', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
959
959
960
960
### Example
961
961
@@ -1294,7 +1294,7 @@ Name | Type | Description | Notes
1294
1294
1295
1295
Create a tag
1296
1296
1297
-
Create a tag Required scopes: org:manage
1297
+
Create a tag Required scopes: document:write
1298
1298
1299
1299
### Example
1300
1300
@@ -2344,7 +2344,7 @@ null (empty response body)
2344
2344
2345
2345
Delete the tag
2346
2346
2347
-
Delete the tag Required scopes: org:manage
2347
+
Delete the tag Required scopes: document:write
2348
2348
2349
2349
### Example
2350
2350
@@ -4827,7 +4827,7 @@ This endpoint does not need any parameter.
4827
4827
4828
4828
Retrieve a tag
4829
4829
4830
-
Retrieve a tag in the project Required scopes: org:manage
4830
+
Retrieve a tag in the project Required scopes: document:read
4831
4831
4832
4832
### Example
4833
4833
@@ -4892,7 +4892,7 @@ Name | Type | Description | Notes
4892
4892
4893
4893
Retrieve all tags
4894
4894
4895
-
Retrieve all tags in the project Required scopes: org:manage
4895
+
Retrieve all tags in the project Required scopes: document:read
4896
4896
4897
4897
### Example
4898
4898
@@ -6819,7 +6819,7 @@ Name | Type | Description | Notes
6819
6819
6820
6820
Update some fields of the tag
6821
6821
6822
-
Update some fields of the tag Required scopes: org:manage
6822
+
Update some fields of the tag Required scopes: document:write
Copy file name to clipboardExpand all lines: src/api/CollaborationApi.js
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -858,7 +858,7 @@ export default class CollaborationApi {
858
858
859
859
/**
860
860
* Create a document
861
-
* Create a document. If the document is one of {'IFC', 'GLTF', 'POINT_CLOUD', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
861
+
* Create a document. If the document is one of {'DXF', 'IFC', 'GLTF', 'OBJ', 'POINT_CLOUD', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
862
862
* @param {Number} cloudPk A unique integer value identifying this cloud.
863
863
* @param {Number} projectPk A unique integer value identifying this project.
864
864
* @param {String} name Shown name of the file
@@ -924,7 +924,7 @@ export default class CollaborationApi {
924
924
925
925
/**
926
926
* Create a document
927
-
* Create a document. If the document is one of {'IFC', 'GLTF', 'POINT_CLOUD', 'DWG', 'OBJ', 'DXF'}, a model will be created and attached to this document Required scopes: document:write
927
+
* Create a document. If the document is one of {'DXF', 'IFC', 'GLTF', 'OBJ', 'POINT_CLOUD', 'DWG'}, a model will be created and attached to this document Required scopes: document:write
928
928
* @param {Number} cloudPk A unique integer value identifying this cloud.
929
929
* @param {Number} projectPk A unique integer value identifying this project.
930
930
* @param {String} name Shown name of the file
@@ -1185,7 +1185,7 @@ export default class CollaborationApi {
1185
1185
1186
1186
/**
1187
1187
* Create a tag
1188
-
* Create a tag Required scopes: org:manage
1188
+
* Create a tag Required scopes: document:write
1189
1189
* @param {Number} cloudPk A unique integer value identifying this cloud.
1190
1190
* @param {Number} projectPk A unique integer value identifying this project.
1191
1191
* @param {module:model/TagRequest} tagRequest
@@ -1230,7 +1230,7 @@ export default class CollaborationApi {
1230
1230
1231
1231
/**
1232
1232
* Create a tag
1233
-
* Create a tag Required scopes: org:manage
1233
+
* Create a tag Required scopes: document:write
1234
1234
* @param {Number} cloudPk A unique integer value identifying this cloud.
1235
1235
* @param {Number} projectPk A unique integer value identifying this project.
1236
1236
* @param {module:model/TagRequest} tagRequest
@@ -2192,7 +2192,7 @@ export default class CollaborationApi {
2192
2192
2193
2193
/**
2194
2194
* Delete the tag
2195
-
* Delete the tag Required scopes: org:manage
2195
+
* Delete the tag Required scopes: document:write
2196
2196
* @param {Number} cloudPk A unique integer value identifying this cloud.
2197
2197
* @param {Number} id A unique integer value identifying this tag.
2198
2198
* @param {Number} projectPk A unique integer value identifying this project.
@@ -2238,7 +2238,7 @@ export default class CollaborationApi {
2238
2238
2239
2239
/**
2240
2240
* Delete the tag
2241
-
* Delete the tag Required scopes: org:manage
2241
+
* Delete the tag Required scopes: document:write
2242
2242
* @param {Number} cloudPk A unique integer value identifying this cloud.
2243
2243
* @param {Number} id A unique integer value identifying this tag.
2244
2244
* @param {Number} projectPk A unique integer value identifying this project.
@@ -4409,7 +4409,7 @@ export default class CollaborationApi {
4409
4409
4410
4410
/**
4411
4411
* Retrieve a tag
4412
-
* Retrieve a tag in the project Required scopes: org:manage
4412
+
* Retrieve a tag in the project Required scopes: document:read
4413
4413
* @param {Number} cloudPk A unique integer value identifying this cloud.
4414
4414
* @param {Number} id A unique integer value identifying this tag.
4415
4415
* @param {Number} projectPk A unique integer value identifying this project.
@@ -4455,7 +4455,7 @@ export default class CollaborationApi {
4455
4455
4456
4456
/**
4457
4457
* Retrieve a tag
4458
-
* Retrieve a tag in the project Required scopes: org:manage
4458
+
* Retrieve a tag in the project Required scopes: document:read
4459
4459
* @param {Number} cloudPk A unique integer value identifying this cloud.
4460
4460
* @param {Number} id A unique integer value identifying this tag.
4461
4461
* @param {Number} projectPk A unique integer value identifying this project.
@@ -4471,7 +4471,7 @@ export default class CollaborationApi {
4471
4471
4472
4472
/**
4473
4473
* Retrieve all tags
4474
-
* Retrieve all tags in the project Required scopes: org:manage
4474
+
* Retrieve all tags in the project Required scopes: document:read
4475
4475
* @param {Number} cloudPk A unique integer value identifying this cloud.
4476
4476
* @param {Number} projectPk A unique integer value identifying this project.
4477
4477
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link Array.<module:model/Tag>} and HTTP response
@@ -4511,7 +4511,7 @@ export default class CollaborationApi {
4511
4511
4512
4512
/**
4513
4513
* Retrieve all tags
4514
-
* Retrieve all tags in the project Required scopes: org:manage
4514
+
* Retrieve all tags in the project Required scopes: document:read
4515
4515
* @param {Number} cloudPk A unique integer value identifying this cloud.
4516
4516
* @param {Number} projectPk A unique integer value identifying this project.
4517
4517
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link Array.<module:model/Tag>}
@@ -6330,7 +6330,7 @@ export default class CollaborationApi {
6330
6330
6331
6331
/**
6332
6332
* Update some fields of the tag
6333
-
* Update some fields of the tag Required scopes: org:manage
6333
+
* Update some fields of the tag Required scopes: document:write
6334
6334
* @param {Number} cloudPk A unique integer value identifying this cloud.
6335
6335
* @param {Number} id A unique integer value identifying this tag.
6336
6336
* @param {Number} projectPk A unique integer value identifying this project.
@@ -6379,7 +6379,7 @@ export default class CollaborationApi {
6379
6379
6380
6380
/**
6381
6381
* Update some fields of the tag
6382
-
* Update some fields of the tag Required scopes: org:manage
6382
+
* Update some fields of the tag Required scopes: document:write
6383
6383
* @param {Number} cloudPk A unique integer value identifying this cloud.
6384
6384
* @param {Number} id A unique integer value identifying this tag.
6385
6385
* @param {Number} projectPk A unique integer value identifying this project.
0 commit comments