Our API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone and time-consuming. Therefore, we have provided and support API SDKs in many development languages in order to make it easier to integrate with us. If you use SDK, it hides the File API calls and lets you use GroupDocs Cloud features in a native way for your preferred language.
usingGroupDocs.Comparison.Cloud.Sdk.Api;usingGroupDocs.Comparison.Cloud.Sdk.Client;usingGroupDocs.Comparison.Cloud.Sdk.Model.Requests;usingSystem;namespaceGroupDocs.Comparison.Cloud.Examples.CSharp{// Download_FileclassDownload_File{publicstaticvoidRun(){varconfiguration=newConfiguration(Common.MyAppSid,Common.MyAppKey);varapiInstance=newFileApi(configuration);try{varrequest=newDownloadFileRequest("Comparisondocs/one-page.docx",Common.MyStorage);varresponse=apiInstance.DownloadFile(request);Console.WriteLine("Expected response type is Stream: "+response.Length.ToString());}catch(Exceptione){Console.WriteLine("Exception while calling FileApi: "+e.Message);}}}}
packageexamples.Working_With_Files;importjava.io.File;importcom.groupdocs.cloud.comparison.api.*;importcom.groupdocs.cloud.comparison.client.ApiException;importcom.groupdocs.cloud.comparison.model.requests.*;importexamples.Utils;publicclassComparison_Java_Download_File{publicstaticvoidmain(String[]args){FileApiapiInstance=newFileApi(Utils.AppSID,Utils.AppKey);try{DownloadFileRequestrequest=newDownloadFileRequest("Comparisondocs\\one-page.docx",Utils.MYStorage,null);Fileresponse=apiInstance.downloadFile(request);System.err.println("Expected response type is File: "+response.length());}catch(ApiExceptione){System.err.println("Exception while calling FileApi:");e.printStackTrace();}}}
<?phpinclude(dirname(__DIR__).'\CommonUtils.php');try{$apiInstance=CommonUtils::GetFileApiInstance();$request=newGroupDocs\Comparison\Model\Requests\DownloadFileRequest("comparisondocs\one-page.docx",CommonUtils::$MyStorage,null);$response=$apiInstance->downloadFile($request);echo"Expected response type is File: ",strlen($response);}catch(Exception$e){echo"Something went wrong: ",$e->getMessage(),"\n";}?>
"use strict";classComparison_Node_Download_File{staticRun(){varrequest=newgroupdocs_comparison_cloud_1.DownloadFileRequest("Comparisondocs/one-page.docx",myStorage);fileApi.downloadFile(request).then(function(response){console.log("Expected response type is Stream: "+response.length);}).catch(function(error){console.log("Error: "+error.message);});}}module.exports=Comparison_Node_Download_File;
# Import modulesimportgroupdocs_comparison_cloudfromCommon_Utilities.UtilsimportCommon_UtilitiesclassComparison_Python_Download_File:@classmethoddefRun(self):# Create instance of the APIapi=Common_Utilities.Get_FileApi_Instance()try:request=groupdocs_comparison_cloud.DownloadFileRequest("comparisondocs\\source.docx",Common_Utilities.myStorage)response=api.download_file(request)print("Expected response type is Stream: "+str(len(response)))exceptgroupdocs_comparison_cloud.ApiExceptionase:print("Exception while calling API: {0}".format(e.message))
# Load the gemrequire'groupdocs_comparison_cloud'require'common_utilities/Utils.rb'classWorking_With_Filesdefself.Comparison_Ruby_Download_File()# Getting instance of the API$api=Common_Utilities.Get_FileApi_Instance()$request=GroupDocsComparisonCloud::DownloadFileRequest.new("comparisondocs/one-page.docx",$myStorage)$response=$api.download_file($request)puts("Expected response type is Stream: "+($response).to_s)endend
Configurationconfiguration=newConfiguration(Common.MyAppSid,Common.MyAppKey);FileApiapiInstance=newFileApi(configuration);DownloadFileRequestrequest=newDownloadFileRequest();request.Path='Comparisondocs/one-page.docx';Streamresponse=apiInstance.downloadFile(request);System.debug('Expected response type is Stream. Length: '+response.getBytes().size());
Our API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone and time-consuming. Therefore, we have provided and support API SDKs in many development languages in order to make it easier to integrate with us. If you use SDK, it hides the File API calls and lets you use GroupDocs for Cloud features in a native way for your preferred language.
usingSystem;usingSystem.IO;usingGroupDocs.Comparison.Cloud.Sdk.Api;usingGroupDocs.Comparison.Cloud.Sdk.Client;usingGroupDocs.Comparison.Cloud.Sdk.Model.Requests;namespaceGroupDocs.Comparison.Cloud.Examples.CSharp{// Upload FileclassUpload_File{publicstaticvoidRun(){varconfiguration=newConfiguration(Common.MyAppSid,Common.MyAppKey);varapiInstance=newFileApi(configuration);try{// Open file in IOStream from local/disc.varfileStream=File.Open("..\\..\\..\\Data\\Comparisondocs\\one-page.docx",FileMode.Open);varrequest=newUploadFileRequest("Comparisondocs/one-page1.docx",fileStream,Common.MyStorage);varresponse=apiInstance.UploadFile(request);Console.WriteLine("Expected response type is FilesUploadResult: "+response.Uploaded.Count.ToString());}catch(Exceptione){Console.WriteLine("Exception while calling FileApi: "+e.Message);}}}}
packageexamples.Working_With_Files;importjava.io.File;importjava.nio.file.Paths;importcom.groupdocs.cloud.comparison.api.*;importcom.groupdocs.cloud.comparison.client.ApiException;importcom.groupdocs.cloud.comparison.model.*;importcom.groupdocs.cloud.comparison.model.requests.*;importexamples.Utils;publicclassComparison_Java_Upload_File{publicstaticvoidmain(String[]args){FileApiapiInstance=newFileApi(Utils.AppSID,Utils.AppKey);try{FilefileStream=newFile(Paths.get("src\\main\\resources").toAbsolutePath().toString()+"\\Comparisondocs\\one-page.docx");UploadFileRequestrequest=newUploadFileRequest("Comparisondocs\\one-page1.docx",fileStream,Utils.MYStorage);FilesUploadResultresponse=apiInstance.uploadFile(request);System.out.println("Expected response type is FilesUploadResult: "+response.getUploaded().size());}catch(ApiExceptione){System.err.println("Exception while calling FileApi:");e.printStackTrace();}}}
<?phpinclude(dirname(__DIR__).'\CommonUtils.php');try{$apiInstance=CommonUtils::GetFileApiInstance();$filePath=realpath(dirname(__DIR__).'\Resources\comparisondocs\one-page.docx');echo"filePath: ".$filePath;$fileStream=readfile($filePath);$request=newGroupDocs\Comparison\Model\Requests\UploadFileRequest("comparisondocs\one-page1.docx",$fileStream);$response=$apiInstance->uploadFile($request);echo"Expected response type is FilesUploadResult: ",$response;}catch(Exception$e){echo"Something went wrong: ",$e->getMessage(),"\n";}?>
"use strict";classComparison_Node_Upload_File{staticRun(){// Open file in IOStream from local/disc.
varresourcesFolder='./Resources/Comparisondocs/one-page.docx';fs.readFile(resourcesFolder,(err,fileStream)=>{varrequest=newgroupdocs_comparison_cloud_1.UploadFileRequest("Comparisondocs/one-page1.docx",fileStream,myStorage);fileApi.uploadFile(request).then(function(response){console.log("Expected response type is FilesUploadResult: "+response.uploaded.length);}).catch(function(error){console.log("Error: "+error.message);});});}}module.exports=Comparison_Node_Upload_File;
# Import modulesimportgroupdocs_comparison_cloudfromCommon_Utilities.UtilsimportCommon_UtilitiesclassComparison_Python_Upload_File:@classmethoddefRun(self):# Create instance of the APIapi=Common_Utilities.Get_FileApi_Instance()try:request=groupdocs_comparison_cloud.UploadFileRequest("comparisondocs\\source.docx","D:\\ewspace\\GroupDocs.Comparison.Cloud.Python.Examples\\src\\Resources\\comparisondocs\\source.docx",Common_Utilities.myStorage)response=api.upload_file(request)print("Expected response type is FilesUploadResult: "+str(response))exceptgroupdocs_comparison_cloud.ApiExceptionase:print("Exception while calling API: {0}".format(e.message))
# Load the gemrequire'groupdocs_comparison_cloud'require'common_utilities/Utils.rb'classWorking_With_Filesdefself.Comparison_Ruby_Upload_File()# Getting instance of the API$api=Common_Utilities.Get_FileApi_Instance()$fileStream=File.new("src\\Resources\\comparisondocs\\source.docx","r")$request=GroupDocsComparisonCloud::UploadFileRequest.new("comparisondocs/source1.docx",$fileStream,$myStorage)$response=$api.upload_file($request)$fileStream.close()puts("Expected response type is FilesUploadResult: "+($response).to_s)endend
// Create config and API instances
Configurationconfig=newConfiguration('YOUR_API_KEY','YOUR_API_SECRET');// Replace with your credentials
FileApifileApi=newFileApi(config);try{// Fetch the file content from Salesforce
List<ContentVersion>contentVersions=[SELECTId,Title,VersionDataFROMContentVersionWHERETitle='one-page.docx'LIMIT1];if(contentVersions.isEmpty()){thrownewException('File one-page.docx not found in ContentVersion.');}// Prepare the upload request
UploadFileRequestuploadRequest=newUploadFileRequest('Comparisondocs/one-page1.docx',contentVersions[0].VersionData,null);// Upload the file
FilesUploadResultresponse=fileApi.uploadFile(uploadRequest);// Log the result
System.debug('Expected response type is FilesUploadResult: '+response.Uploaded.size());}catch(Exceptione){System.debug('Exception while calling FileApi: '+e.getMessage());}
Our API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone and time-consuming. Therefore, we have provided and support API SDKs in many development languages in order to make it easier to integrate with us. If you use SDK, it hides the File API calls and lets you use GroupDocs Cloud features in a native way for your preferred language.
usingGroupDocs.Comparison.Cloud.Sdk.Api;usingGroupDocs.Comparison.Cloud.Sdk.Client;usingGroupDocs.Comparison.Cloud.Sdk.Model.Requests;usingSystem;namespaceGroupDocs.Comparison.Cloud.Examples.CSharp{// Delete FileclassDelete_File{publicstaticvoidRun(){varconfiguration=newConfiguration(Common.MyAppSid,Common.MyAppKey);varapiInstance=newFileApi(configuration);try{varrequest=newDeleteFileRequest("Comparisondocs1/one-page1.docx",Common.MyStorage);apiInstance.DeleteFile(request);Console.WriteLine("Expected response type is Void: 'Comparisondocs1/one-page1.docx' deleted.");}catch(Exceptione){Console.WriteLine("Exception while calling FileApi: "+e.Message);}}}}
packageexamples.Working_With_Files;importcom.groupdocs.cloud.comparison.api.*;importcom.groupdocs.cloud.comparison.client.ApiException;importcom.groupdocs.cloud.comparison.model.requests.*;importexamples.Utils;publicclassComparison_Java_Delete_File{publicstaticvoidmain(String[]args){FileApiapiInstance=newFileApi(Utils.AppSID,Utils.AppKey);try{DeleteFileRequestrequest=newDeleteFileRequest("Comparisondocs1\\one-page1.docx",Utils.MYStorage,null);apiInstance.deleteFile(request);System.out.println("Expected response type is Void: 'Comparisondocs1/one-page1.docx' deleted.");}catch(ApiExceptione){System.err.println("Exception while calling FileApi:");e.printStackTrace();}}}
<?phpinclude(dirname(__DIR__).'\CommonUtils.php');try{$apiInstance=CommonUtils::GetFileApiInstance();$request=newGroupDocs\Comparison\Model\Requests\DeleteFileRequest("comparisondocs\one-page-copied.docx",CommonUtils::$MyStorage);$apiInstance->deleteFile($request);echo"Expected response type is Void: 'comparisondocs1/one-page-copied.docx' file deleted.";}catch(Exception$e){echo"Something went wrong: ",$e->getMessage(),"\n";}?>
"use strict";classComparison_Node_Delete_File{staticRun(){varrequest=newgroupdocs_comparison_cloud_1.DeleteFileRequest("Comparisondocs1/one-page1.docx",myStorage);fileApi.deleteFile(request).then(function(response){console.log("Expected response type is Void: 'Comparisondocs1/one-page1.docx' deleted.");}).catch(function(error){console.log("Error: "+error.message);});}}module.exports=Comparison_Node_Delete_File;
# Import modulesimportgroupdocs_comparison_cloudfromCommon_Utilities.UtilsimportCommon_UtilitiesclassComparison_Python_Delete_File:@classmethoddefRun(self):# Create instance of the APIapi=Common_Utilities.Get_FileApi_Instance()try:request=groupdocs_comparison_cloud.DeleteFileRequest("comparisondocs1\\source.docx",Common_Utilities.myStorage)api.delete_file(request)print("Expected response type is Void: 'comparisondocs1/source.docx' deleted.")exceptgroupdocs_comparison_cloud.ApiExceptionase:print("Exception while calling API: {0}".format(e.message))
# Load the gemrequire'groupdocs_comparison_cloud'require'common_utilities/Utils.rb'classWorking_With_Filesdefself.Comparison_Ruby_Delete_File()# Getting instance of the API$api=Common_Utilities.Get_FileApi_Instance()$request=GroupDocsComparisonCloud::DeleteFileRequest.new("comparisondocs1/source.docx",$myStorage)$response=$api.delete_file($request)puts("Expected response type is Void: 'comparisondocs1/one-page.docx' deleted.")endend
// Create config and API instances
Configurationconfig=newConfiguration('YOUR_API_KEY','YOUR_API_SECRET');// Replace with your credentials
FileApifileApi=newFileApi(config);try{// Prepare the delete file request
DeleteFileRequestdeleteRequest=newDeleteFileRequest('Comparisondocs1/one-page1.docx',null);// Delete the file
fileApi.deleteFile(deleteRequest);// Log success message
System.debug('Expected response type is Void: \'Comparisondocs1/one-page1.docx\' deleted.');}catch(Exceptione){System.debug('Exception while calling FileApi: '+e.getMessage());}
Path of the source file including file name and extension e.g. /Folder1/file.ext Required. Can be passed as query string parameter or as part of the URL
destPath
Path of the destination file. Required.
srcStorageName
Name of the storage of source file. If not set, then default storage used
destStorageName
Name of the storage of destination file. If not set, then default storage used
Our API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone and time-consuming. Therefore, we have provided and support API SDKs in many development languages in order to make it easier to integrate with us. If you use SDK, it hides the File API calls and lets you use GroupDocs Cloud features in a native way for your preferred language.
usingGroupDocs.Comparison.Cloud.Sdk.Api;usingGroupDocs.Comparison.Cloud.Sdk.Client;usingGroupDocs.Comparison.Cloud.Sdk.Model.Requests;usingSystem;namespaceGroupDocs.Comparison.Cloud.Examples.CSharp{// Copy FileclassCopy_File{publicstaticvoidRun(){varconfiguration=newConfiguration(Common.MyAppSid,Common.MyAppKey);varapiInstance=newFileApi(configuration);try{varrequest=newCopyFileRequest("Comparisondocs/one-page1.docx","Comparisondocs/one-page-copied.docx",Common.MyStorage,Common.MyStorage);apiInstance.CopyFile(request);Console.WriteLine("Expected response type is Void: 'Comparisondocs/one-page1.docx' file copied as 'Comparisondocs/one-page-copied.docx'.");}catch(Exceptione){Console.WriteLine("Exception while calling FileApi: "+e.Message);}}}}
packageexamples.Working_With_Files;importcom.groupdocs.cloud.comparison.api.*;importcom.groupdocs.cloud.comparison.client.ApiException;importcom.groupdocs.cloud.comparison.model.requests.*;importexamples.Utils;publicclassComparison_Java_Copy_File{publicstaticvoidmain(String[]args){FileApiapiInstance=newFileApi(Utils.AppSID,Utils.AppKey);try{CopyFileRequestrequest=newCopyFileRequest("Comparisondocs\\one-page.docx","Comparisondocs\\one-page-copied.docx",Utils.MYStorage,Utils.MYStorage,null);apiInstance.copyFile(request);System.out.println("Expected response type is Void: 'Comparisondocs/one-page1.docx' file copied as 'Comparisondocs/one-page-copied.docx'.");}catch(ApiExceptione){System.err.println("Exception while calling FileApi:");e.printStackTrace();}}}
<?phpinclude(dirname(__DIR__).'\CommonUtils.php');try{$apiInstance=CommonUtils::GetFileApiInstance();$request=newGroupDocs\Comparison\Model\Requests\CopyFileRequest("comparisondocs\one-page.docx","comparisondocs\one-page-copied.docx",CommonUtils::$MyStorage,CommonUtils::$MyStorage);$apiInstance->copyFile($request);echo"Expected response type is Void: 'comparisondocs/one-page.docx' file copied as 'comparisondocs/one-page-copied.docx'.";}catch(Exception$e){echo"Something went wrong: ",$e->getMessage(),"\n";}?>
"use strict";classComparison_Node_Copy_File{staticRun(){varrequest=newgroupdocs_comparison_cloud_1.CopyFileRequest("Comparisondocs/one-page1.docx","Comparisondocs/one-page-copied.docx",myStorage,myStorage);fileApi.copyFile(request).then(function(response){console.log("Expected response type is Void: 'Comparisondocs/one-page1.docx' file copied as 'Comparisondocs/one-page-copied.docx'.");}).catch(function(error){console.log("Error: "+error.message);});}}module.exports=Comparison_Node_Copy_File;
# Import modulesimportgroupdocs_comparison_cloudfromCommon_Utilities.UtilsimportCommon_UtilitiesclassComparison_Python_Copy_File:@classmethoddefRun(self):# Create instance of the APIapi=Common_Utilities.Get_FileApi_Instance()try:request=groupdocs_comparison_cloud.CopyFileRequest("comparisondocs\\source.docx","comparisondocs\\source-copied.docx",Common_Utilities.myStorage,Common_Utilities.myStorage)api.copy_file(request)print("Expected response type is Void: 'comparisondocs/source.docx' file copied as 'comparisondocs/source-copied.docx'.")exceptgroupdocs_comparison_cloud.ApiExceptionase:print("Exception while calling API: {0}".format(e.message))
# Load the gemrequire'groupdocs_comparison_cloud'require'common_utilities/Utils.rb'classWorking_With_Filesdefself.Comparison_Ruby_Copy_File()# Getting instance of the API$api=Common_Utilities.Get_FileApi_Instance()$request=GroupDocsComparisonCloud::CopyFileRequest.new("source.docx","comparisondocs\\source.docx",$myStorage,$myStorage)$response=$api.copy_file($request)puts("Expected response type is Void: 'comparisondocs/source.docx' file copied as 'comparisondocs/source-copied.docx'.")endend
// Create config and API instances
Configurationconfig=newConfiguration('YOUR_API_KEY','YOUR_API_SECRET');// Replace with your credentials
FileApifileApi=newFileApi(config);try{// Prepare the copy file request
CopyFileRequestcopyRequest=newCopyFileRequest('Comparisondocs/one-page1.docx','Comparisondocs/one-page-copied.docx',null,null);// Copy the file
fileApi.copyFile(copyRequest);// Log success message
System.debug('Expected response type is Void: \'Comparisondocs/one-page1.docx\' file copied as \'Comparisondocs/one-page-copied.docx\'.');}catch(Exceptione){System.debug('Exception while calling FileApi: '+e.getMessage());}
Path of the source file including file name and extension e.g. /Folder1/file.ext Required. Can be passed as query string parameter or as part of the URL
destPath
Path of the destination file. Required.
srcStorageName
Name of the storage of source file. If not set, then default storage used
destStorageName
Name of the storage of destination file. If not set, then default storage used
Our API is completely independent of your operating system, database system or development language. You can use any language and platform that supports HTTP to interact with our API. However, manually writing client code can be difficult, error-prone and time-consuming. Therefore, we have provided and support API SDKs in many development languages in order to make it easier to integrate with us. If you use SDK, it hides the File API calls and lets you use GroupDocs for Cloud features in a native way for your preferred language.
usingGroupDocs.Comparison.Cloud.Sdk.Api;usingGroupDocs.Comparison.Cloud.Sdk.Client;usingGroupDocs.Comparison.Cloud.Sdk.Model.Requests;usingSystem;namespaceGroupDocs.Comparison.Cloud.Examples.CSharp{// Move FileclassMove_File{publicstaticvoidRun(){varconfiguration=newConfiguration(Common.MyAppSid,Common.MyAppKey);varapiInstance=newFileApi(configuration);try{varrequest=newMoveFileRequest("Comparisondocs/one-page1.docx","Comparisondocs1/one-page1.docx",Common.MyStorage,Common.MyStorage);apiInstance.MoveFile(request);Console.WriteLine("Expected response type is Void: 'Comparisondocs/one-page1.docx' file moved to 'Comparisondocs1/one-page1.docx'.");}catch(Exceptione){Console.WriteLine("Exception while calling FileApi: "+e.Message);}}}}
packageexamples.Working_With_Files;importcom.groupdocs.cloud.comparison.api.*;importcom.groupdocs.cloud.comparison.client.ApiException;importcom.groupdocs.cloud.comparison.model.requests.*;importexamples.Utils;publicclassComparison_Java_Move_File{publicstaticvoidmain(String[]args){FileApiapiInstance=newFileApi(Utils.AppSID,Utils.AppKey);try{MoveFileRequestrequest=newMoveFileRequest("Comparisondocs\\one-page1.docx","Comparisondocs1\\one-page1.docx",Utils.MYStorage,Utils.MYStorage,null);apiInstance.moveFile(request);System.out.println("Expected response type is Void: 'Comparisondocs/one-page1.docx' file moved to 'Comparisondocs1/one-page1.docx'.");}catch(ApiExceptione){System.err.println("Exception while calling FileApi:");e.printStackTrace();}}}
<?phpinclude(dirname(__DIR__).'\CommonUtils.php');try{$apiInstance=CommonUtils::GetFileApiInstance();$request=newGroupDocs\Comparison\Model\Requests\MoveFileRequest("comparisondocs\one-page.docx","comparisondocs1\one-page-copied.docx",CommonUtils::$MyStorage,CommonUtils::$MyStorage);$apiInstance->moveFile($request);echo"Expected response type is Void: 'comparisondocs/one-page.docx' file moved as 'comparisondocs1/one-page-copied.docx'.";}catch(Exception$e){echo"Something went wrong: ",$e->getMessage(),"\n";}?>
"use strict";classComparison_Node_Move_File{staticRun(){varrequest=newgroupdocs_comparison_cloud_1.MoveFileRequest("Comparisondocs/one-page1.docx","Comparisondocs1/one-page1.docx",myStorage,myStorage);fileApi.moveFile(request).then(function(response){console.log("Expected response type is Void: 'Comparisondocs/one-page1.docx' file moved to 'Comparisondocs1/one-page1.docx'.");}).catch(function(error){console.log("Error: "+error.message);});}}module.exports=Comparison_Node_Move_File;
# Import modulesimportgroupdocs_comparison_cloudfromCommon_Utilities.UtilsimportCommon_UtilitiesclassComparison_Python_Move_File:@classmethoddefRun(self):# Create instance of the APIapi=Common_Utilities.Get_FileApi_Instance()try:request=groupdocs_comparison_cloud.MoveFileRequest("comparisondocs\\source.docx","comparisondocs1\\source.docx",Common_Utilities.myStorage,Common_Utilities.myStorage)api.move_file(request)print("Expected response type is Void: 'comparisondocs/source.docx' file moved to 'comparisondocs1/source.docx'.")exceptgroupdocs_comparison_cloud.ApiExceptionase:print("Exception while calling API: {0}".format(e.message))
# Load the gemrequire'groupdocs_comparison_cloud'require'common_utilities/Utils.rb'classWorking_With_Filesdefself.Comparison_Ruby_Move_File()# Getting instance of the API$api=Common_Utilities.Get_FileApi_Instance()$request=GroupDocsComparisonCloud::MoveFileRequest.new("comparisondocs/source.docx","comparisondocs1/source.docx",$myStorage,$myStorage)$response=$api.move_file($request)puts("Expected response type is Void: 'comparisondocs/source.docx' file moved to 'comparisondocs1/source.docx'.")endend
// Create config and API instances
Configurationconfig=newConfiguration('YOUR_API_KEY','YOUR_API_SECRET');// Replace with your credentials
FileApifileApi=newFileApi(config);try{// Prepare the move file request
MoveFileRequestmoveRequest=newMoveFileRequest('Comparisondocs/one-page1.docx','Comparisondocs1/one-page1.docx',null,null);// Move the file
fileApi.moveFile(moveRequest);// Log success message
System.debug('Expected response type is Void: \'Comparisondocs/one-page1.docx\' file moved to \'Comparisondocs1/one-page1.docx\'.');}catch(Exceptione){System.debug('Exception while calling FileApi: '+e.getMessage());}
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.