I have the following setup for a CreateDocument call. Other than the content, the other parameters seem to be coming in as null. Is there something I am missing. My current code:
var documentId = Guid.NewGuid().ToString();
...
SaveUrlParams = new Dictionary<string, object>
{
{ "content", "$content" },
{ "fileId", documentId }
}
...
[HttpPost]
[Route("Save")]
public async Task Save(IFormFile content, string fileId)