// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
namespace Aspose.Cells.Cloud.SDK.Example
{
    using Aspose.Cells.Cloud.SDK.Api;
    using Aspose.Cells.Cloud.SDK.Request;
    using System;

    public partial class CellsApiExample
    {
        public void PostWorkbookGetSmartMarkerResultExample()
        {
            CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));
            PostWorkbookGetSmartMarkerResultRequest request = new PostWorkbookGetSmartMarkerResultRequest { name = "Book1.xlsx",  xmlFile = "ReportData.xml", folder = "TestData/In" };
            cellsApi.PostWorkbookGetSmartMarkerResult(request);
        }
    }
}
//  Obsolete
//CellsWorkbookApi instance = new CellsWorkbookApi(GetConfiguration());
//string name = "Book1.xlsx";
//string xmlFile = "ReportData.xml";
//string folder = null;
//string outPath = null;
//UpdateDataFile(folder, name);
//UpdateDataFile("", xmlFile);
//var response = instance.CellsWorkbookPostWorkbookGetSmartMarkerResult(name, xmlFile, folder, outPath);