Reputation: 23
Question: I'm currently working on a C# Add-in for Revit and need to import data (JSON/XML/or any other format) from an C# Web API into the Revit software. I have searched for specific documentation or videos on this topic, but haven't found any helpful resources so far.
Could someone provide guidance on how to import data from an API into Revit using a C# Add-in? Specifically, I'm looking for information on the following:
I would greatly appreciate any code examples, references to relevant documentation, or any other resources that can help me achieve this functionality in my Revit Add-in.
Thank you in advance for your assistance!
Upvotes: 0
Views: 403
Reputation: 8339
The official Autodesk FireRating SDK sample demonstrates all of these steps for a trivially simple use case:
https://thebuildingcoder.typepad.com/blog/2012/09/exporting-parameter-data-to-excel.html
The FireRatingCloud samples takes it to the next level:
https://github.com/jeremytammik/FireRatingCloud
Upvotes: 0