I am trying to convert my doc and png files to PDF and merge them using ConvertAPI, Whenever I try to run the code snippet provided on their site it just doesn't return any file result.
The online stats on my page shows it has been converted
This is the code I am using
var convertApi = new ConvertApi("<my secret key>");
convertApi.ConvertAsync(fileFormatFrom, "pdf",
new ConvertApiFileParam(FileToConvert)
).Result.SaveFiles(MyOutputFolder);
I was able to get the conversion then done using WebClient's UploadFile function, but I am not sure how to achieve Merge using the same.
Any help will be appreciated.