<?php require_once('vendor\autoload.php'); use \Aspose\Cells\Cloud\Api\CellsApi; use \Aspose\Cells\Cloud\Request\PostWorksheetListObjectRemoveDuplicatesRequest; $CellsCloudClientId = "...." ; # get from https://dashboard.aspose.cloud/#/applications $CellsCloudClientSecret = "...."; # get from https://dashboard.aspose.cloud/#/applications $cellsApi = new CellsApi($CellsCloudClientId , $CellsCloudClientSecret ); $remoteFolder = "TestData/In"; $localName = "TestTables.xlsx"; $remoteName = "TestTables.xlsx"; $request = new PostWorksheetListObjectRemoveDuplicatesRequest(); $request->setName( $remoteName); $request->setSheetName( "Sheet2"); $request->setListObjectIndex( 0); $request->setFolder( $remoteFolder); $request->setStorageName( ""); $cellsApi->postWorksheetListObjectRemoveDuplicates($request);