is it possible to delete the source file from Autodesk Forge once the translation is complete and still be able to view the translated file in the viewer? If so which endpoints from the APIs should be used to achieve this?
Asked
Active
Viewed 174 times
1 Answers
1
There are two API to delete files on the Forge platform:
- DELETE buckets/:bucketKey/objects/:objectName: call this API to delete uploaded model raw files such as RVT, NWD, IFC, OBJ, STL and etc. stored on your own Forge OSS bucket (Forge Data Management API). But this might be unnecessary, the upload files should be removed after 24hours or a month regarding the bucket policies, unless these files are uploaded to a bucket with Persistent policy, see here for the bucket policies.
- DELETE :urn/manifest: call this API to delete all derivative bubbles(i.e. the translated files) generated via POST job of the Forge Model Derivative API.

Eason Kang
- 6,155
- 1
- 7
- 24
-
is it possible to change the persistence policy for a bucket once it has been created and populated? – Neil_M Jul 16 '18 at 14:56
-
Unfortunately, it doesn't support to modify the bucket policy currently once it has been created. You have to create a new one instead. – Eason Kang Jul 16 '18 at 15:09