GroupDocs.Merger Cloud 25.5 Release Notes
This page contains release notes for GroupDocs.Merger Cloud 25.5
Major Features
- Added /mix API method that allows join documents pages in random order;
- Added BilledApiCalls field in results of /consumption API method;
- Bug fixes and improvements;
List of issues covering changes in this release
| Key | Summary | Category |
|---|---|---|
| MERGERCLOUD-90 | Wrong title in swagger spec | Bug |
| MERGERCLOUD-91 | License consumption API method has wrong version | Bug |
| MERGERCLOUD-92 | Join operation consumes extra credit | Bug |
API changes
Added new options to ConsumptionResult
| Name | Type | Description |
|---|---|---|
ConsumptionResult.BilledApiCalls | number | Billed API Calls number in current billing period |
/mix API Method
The /mix API method allows combining selected pages from multiple documents into a single document in a specified order. This method provides flexibility in merging documents by enabling users to define custom page sequences.
Request Parameters
The /mix API method accepts a MixPagesOptions object as input, which includes the following properties:
| Name | Type | Description |
|---|---|---|
Files | List | Source documents for the MixPages operation. |
FilesPages | List | Specifies page numbers for document indices in the Files collection. |
OutputPath | string | Path for the output document. |
WordJoinMode | WordJoinMode | Specifies how to join Word documents without empty spaces between them. Default is WordJoinMode.Default. |
WordJoinCompliance | WordJoinCompliance | Compliance mode for Word OOXML format. Default is WordJoinCompliance.Auto. |
ImageJoinMode | ImageJoinMode | Specifies modes for joining images. |
MixPagesItem
The MixPagesItem class defines options for individual documents in the MixPages operation:
| Name | Type | Description |
|---|---|---|
FileIndex | int | Index of the file from the MixPagesOptions.Files collection. |
Pages | List | List of page numbers to include in the MixPages operation. Note: Page numbering starts from 1. |
Response
The /mix API method returns a DocumentResult object containing information about the output document along with a 200 OK status.
For more details, refer to the GroupDocs Merger Cloud API documentation.