Method MergeDocuments
MergeDocuments(String, List<String>)
Merge multiple documents together to one document
Declaration
string MergeDocuments(string connectionId, List<string> fileIds)
Parameters
Type | Name | Description |
---|---|---|
System.String | connectionId | The connection id to identify your connection. See also ConnectionId |
System.Collections.Generic.List<System.String> | fileIds | List of fileId parameters |
Returns
Type | Description |
---|---|
System.String | FileId of the result document |
Remarks
Currently supported extensions: PDF
Examples
POST https://YourServerName/InfoShare/Json/DocumentProcessing/MergeDocuments
Example for a merge two documents to one{
"connectionId": "3c82780c-d086-4564-ab20-915fc2182620",
"fileIds": [ "4ff080cc-a3da-e911-82a2-00155d7bfb0a", "4ef080cc-a3da-e911-82a2-00155d7bfb0a"]
}
Response:
{
"MergeDocumentsResult": "08bec571-92d1-4adc-9088-789ac2feb3a4"
}