I created a project from this tutorial.
How may I send a huge json file by user to be read in Command.cs
in Design Automation for Revit on cloud? I receive the file in DesignAutomationController.cs
using form, but i am unable to send it to Command.cs
as in this the url becomes way too huge.
XrefTreeArgument inputJsonArgument = new XrefTreeArgument()
{
Url = "data:application/json, " + ((JObject)inputJson).ToString(Formatting.None).Replace("\"", "'")
};