Merge and Split with Cloud API & .NET SDK

Easy to use Microsoft .NET wrapper SDK for the cloud REST API to split or merge PDF, word processing documents, spreadsheets and more supported formats.

  • GroupDocs.Merger Cloud for cURL
  • GroupDocs.Merger Cloud SDK for Java
  • GroupDocs.Merger Cloud SDK for PHP
  • GroupDocs.Merger Cloud SDK for Python
  • GroupDocs.Merger Cloud SDK for Ruby
  • GroupDocs.Merger Cloud SDK for Node.js
  • GroupDocs.Merger Cloud SDK for Android
Start Free Trial

GroupDocs.Merger Cloud API provides a solution to merge and split documents of all common business formats. Supported file types include PDF, Microsoft Word documents, Excel spreadsheets, PowerPoint presentations, plain and formatted text, and a long list of supported document formats. Merger 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. Manually writing client code can be difficult, error-prone and time-consuming, therefore, we have provided and supports SDKs in many development languages in order to make it easier to communicate with the Cloud Merger API. Using the SDK for .NET, it will hide the REST API calls and will let the developers use GroupDocs.Merger Cloud API features in a native way for your .NET application.

Document Merger REST API Features

Combine multiple pages, slides or spreadsheets into a single document

Swap position of any two pages, slides or sheets within a document

Rotate pages by setting rotation angles like 90, 180 or 270 degrees

Split any document into smaller files

Remove any single or collection of specific pages

Change page orientation

Rearrange pages, slides or diagrams

Set, reset & remove password

Fetch list of supported file formats

Merge multiple documents

Using GroupDocs.Merger Cloud API, you can combine two or more documents into one, or split any document into multiple smaller documents. Following few lines of code shows how to merge two PDF documents in C# .NET.

Merge PDF documents - C# .NET

  //Get your App SID and App Key at https://dashboard.groupdocs.cloud (free registration is required).
  var configuration = new Configuration(MyAppSid, MyAppKey);
  var apiInstance = new DocumentApi(configuration);
  var item1 = new JoinItem
  {
            FileInfo = new FileInfo
    {
      FilePath = "foldername/doc1.pdf"
    }
        };
  
  var item2 = new JoinItem
  {
            FileInfo = new FileInfo
    {
      FilePath = "foldername/doc2.pdf"
    }
        };
  
  var options = new JoinOptions
  {
            JoinItems = new List { item1, item2 },
    OutputPath = "output/joinedDoc.pdf"
        };

  var request = new JoinRequest(options);
  var response = apiInstance.Join(request);

Support and Learning Resources

GroupDocs.Merger Cloud also offers individual document merger SDKs for other languages as listed below:

  English
4bde1f0