Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- Be respectful, on topic and if you see a problem, Flag it.
If you would like to contact our Community Manager personally, feel free to send a private message or an email.
Is it possible to download STEP file from API?
C_Justin
Member Posts: 16 ✭
Best Answer
-
awk Member, Onshape Employees, Developers Posts: 78The API provides a mechanism to translate either a part studio or assembly into a STEP file and download the result of the translation.
You can find more details in the developer portal (under the help section) - https://dev-portal.onshape.com
One thing to note is that this is a translation process and it's asynchronous. The basic process is to request that the item be translated, receive a 'token' that can be used to check on the progress (or be told of errors) and then download the result when translation is complete. It's a sequence of API calls, not one single call.
(Exporting to either Parasolid or STL *is* a single API call, but that's unique to those formats due to the underlying nature of parametric geometry kernel we use).Director of API, Appstore, and App Partner Technical Support5
Answers
You can find more details in the developer portal (under the help section) - https://dev-portal.onshape.com
One thing to note is that this is a translation process and it's asynchronous. The basic process is to request that the item be translated, receive a 'token' that can be used to check on the progress (or be told of errors) and then download the result when translation is complete. It's a sequence of API calls, not one single call.
(Exporting to either Parasolid or STL *is* a single API call, but that's unique to those formats due to the underlying nature of parametric geometry kernel we use).