GroupDocs.Comparison Cloud provides an ability to apply or discard specific changes between source and target files and save result with (or without) selected changes.
Changes - List of changes that must be applied (or not) to the resulting document;
The following code sample shows how to accept/reject changes.
API usage
There are steps that usage of GroupDocs.Comparison Cloud consists of:
Upload input documents into cloud storage
Compare documents or get document info
Download comparison result document from storage
Steps 1 and 3 are storage operations, please refer to this File API documentation for usage details.
Swagger UI lets you call this REST API directly from the browser.
cURL example
Curl example contains only ‘updates’ method call. For ‘changes’ method, see other examples
Using an SDK (API client) is the quickest way for a developer to speed up the development. An SDK takes care of a lot of low-level details of making requests and handling responses and lets you focus on writing code specific to your particular project. Check out our GitHub repository for a complete list of GroupDocs.Comparison Cloud SDKs along with working examples, to get you started in no time. Please check Available SDKs article to learn how to add an SDK to your project.
// For complete examples and data files, please go to https://github.com/groupdocs-comparison-cloud/groupdocs-comparison-cloud-dotnet-samplesstringMyClientSecret="";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloudstringMyClientId="";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloudvarconfiguration=newConfiguration(MyClientId,MyClientSecret);varapiInstance=newCompareApi(configuration);varoptions=newUpdatesOptions{SourceFile=newFileInfo{FilePath="source_files/word/source.docx"},TargetFiles=newList<FileInfo>{newFileInfo{FilePath="target_files/word/target.docx"}},OutputPath="output/result.docx"};varchanges=apiInstance.PostChanges(newPostChangesRequest(options));foreach(varchangeinchanges)change.ComparisonAction=ChangeInfo.ComparisonActionEnum.Reject;changes[0].ComparisonAction=ChangeInfo.ComparisonActionEnum.Accept;options.Changes=changes;varresponse=apiInstance.PutChangesDocument(newPutChangesDocumentRequest(options));
// For complete examples and data files, please go to https://github.com/groupdocs-comparison-cloud/groupdocs-comparison-cloud-java-samples
StringMyClientSecret="";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
StringMyClientId="";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
Configurationconfiguration=newConfiguration(MyClientId,MyClientSecret);CompareApiapiInstance=newCompareApi(configuration);FileInfosourceFileInfo=newFileInfo();sourceFileInfo.setFilePath("source_files/word/source.docx");FileInfotargetFileInfo=newFileInfo();targetFileInfo.setFilePath("target_files/word/target.docx");UpdatesOptionsoptions=newUpdatesOptions();options.setSourceFile(sourceFileInfo);options.addTargetFilesItem(targetFileInfo);options.setOutputPath("output/result.docx");PostChangesRequestrequest=newPostChangesRequest(options);List<ChangeInfo>changes=apiInstance.postChanges(request);for(ChangeInfochange:changes){change.setComparisonAction(ComparisonActionEnum.REJECT);}changes.get(0).setComparisonAction(ComparisonActionEnum.REJECT);options.setChanges(changes);Linkresponse=apiInstance.putChangesDocument(newPutChangesDocumentRequest(options));
// For complete examples and data files, please go to https://github.com/groupdocs-comparison-cloud/groupdocs-comparison-cloud-php-samples
useGroupDocs\Comparison\Model;useGroupDocs\Comparison\Model\Requests;$ClientId="";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
$ClientSecret="";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
$configuration=newGroupDocs\Comparison\Configuration();$configuration->setAppSid($ClientId);$configuration->setAppKey($ClientSecret);$apiInstance=newGroupDocs\Comparison\CompareApi($configuration);$sourceFile=newModel\FileInfo();$sourceFile->setFilePath("source_files/word/source.docx");$targetFile=newModel\FileInfo();$targetFile->setFilePath("target_files/word/target.docx");$options=newModel\UpdatesOptions();$options->setSourceFile($sourceFile);$options->setTargetFiles([$targetFile]);$options->setOutputPath("output/result.docx");$changes=$apiInstance->postChanges(newRequests\PostChangesRequest($options));for($i=0;$i<count($changes);$i++){$changes[$i]->setComparisonAction(Model\ChangeInfo::COMPARISON_ACTION_REJECT);}$changes[0]->setComparisonAction(Model\ChangeInfo::COMPARISON_ACTION_ACCEPT);$options->setChanges($changes);$request=newRequests\PutChangesDocumentRequest($options);$response=$apiInstance->putChangesDocument($request);
// For complete examples and data files, please go to https://github.com/groupdocs-comparison-cloud/groupdocs-comparison-cloud-node-samples
global.comparison_cloud=require("groupdocs-comparison-cloud");global.clientId="XXXX-XXXX-XXXX-XXXX";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
global.clientSecret="XXXXXXXXXXXXXXXX";// Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud
global.compareApi=comparison_cloud.CompareApi.fromKeys(clientId,clientSecret);try{letsource=newcomparison_cloud.FileInfo();source.filePath="source_files/word/source.docx";lettarget=newcomparison_cloud.FileInfo();target.filePath="target_files/word/target.docx";letoptions=newcomparison_cloud.UpdatesOptions();options.sourceFile=source;options.targetFiles=[target];options.outputPath="output/result.docx";letchanges=awaitcompareApi.postChanges(newcomparison_cloud.PostChangesRequest(options));changes.forEach(change=>{change.comparisonAction=comparison_cloud.ChangeInfo.ComparisonActionEnum.Reject;});changes[0].comparisonAction=comparison_cloud.ChangeInfo.ComparisonActionEnum.Accept;options.changes=changes;letresponse=awaitcompareApi.putChangesDocument(newcomparison_cloud.PutChangesDocumentRequest(options));console.log("Output file link: "+response.href);}catch(error){console.log(error.message);}
# For complete examples and data files, please go to https://github.com/groupdocs-comparison-cloud/groupdocs-comparison-cloud-python-samplesimportgroupdocs_comparison_cloudclient_id="XXXX-XXXX-XXXX-XXXX"# Get ClientId and ClientSecret from https://dashboard.groupdocs.cloudclient_secret="XXXXXXXXXXXXXXXX"# Get ClientId and ClientSecret from https://dashboard.groupdocs.cloudapi_instance=groupdocs_comparison_cloud.CompareApi.from_keys(client_id,client_secret)source=groupdocs_comparison_cloud.FileInfo()source.file_path="source_files/word/source.docx"target=groupdocs_comparison_cloud.FileInfo()target.file_path="target_files/word/target.docx"options=groupdocs_comparison_cloud.UpdatesOptions()options.source_file=sourceoptions.target_files=[target]options.output_path="output/result.docx"changes=api_instance.post_changes(groupdocs_comparison_cloud.PostChangesRequest(options))forchangeinchanges:change.comparison_action="Reject"changes[0].comparison_action="Accept"options.changes=changesresponse=api_instance.put_changes_document(groupdocs_comparison_cloud.PutChangesDocumentRequest(options))
# For complete examples and data files, please go to https://github.com/groupdocs-comparison-cloud/groupdocs-comparison-cloud-ruby-samplesrequire'groupdocs_comparison_cloud'$client_id="XXXX-XXXX-XXXX-XXXX"# Get ClientId and ClientSecret from https://dashboard.groupdocs.cloud$client_secret="XXXXXXXXXXXXXXXX"# Get ClientId and ClientSecret from https://dashboard.groupdocs.cloudapi_instance=GroupDocsComparisonCloud::CompareApi.from_keys($client_id,$client_secret)source=GroupDocsComparisonCloud::FileInfo.newsource.file_path="source_files/word/source.docx"target=GroupDocsComparisonCloud::FileInfo.newtarget.file_path="target_files/word/target.docx"options=GroupDocsComparisonCloud::UpdatesOptions.newoptions.source_file=sourceoptions.target_files=[target]options.output_path="output/result.docx"changes=apiInstance.post_changes(GroupDocsComparisonCloud::PostChangesRequest.new(options))forchangeinchangesdochange.comparison_action="Reject"endchanges[0].comparison_action="Accept"options.changes=changesresponse=apiInstance.put_changes_document(GroupDocsComparisonCloud::PutChangesDocumentRequest.new(options))
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.