@@ -336,6 +336,7 @@ Method | HTTP request | Description
336336[ ** putRadioButtonField** ] ( PdfApi.md#putRadioButtonField ) | ** PUT** /pdf/\{ name}/fields/radiobutton/\{ fieldName} | Replace document RadioButton field
337337[ ** putRedactionAnnotation** ] ( PdfApi.md#putRedactionAnnotation ) | ** PUT** /pdf/\{ name}/annotations/redaction/\{ annotationId} | Replace document redaction annotation
338338[ ** putReplaceImage** ] ( PdfApi.md#putReplaceImage ) | ** PUT** /pdf/\{ name}/images/\{ imageId} | Replace document image.
339+ [ ** putReplaceMultipleImage** ] ( PdfApi.md#putReplaceMultipleImage ) | ** PUT** /pdf/\{ name}/images/replace | Replace document multiple image.
339340[ ** putScreenAnnotation** ] ( PdfApi.md#putScreenAnnotation ) | ** PUT** /pdf/\{ name}/annotations/screen/\{ annotationId} | Replace document screen annotation
340341[ ** putScreenAnnotationDataExtract** ] ( PdfApi.md#putScreenAnnotationDataExtract ) | ** PUT** /pdf/\{ name}/annotations/screen/\{ annotationId}/data/extract | Extract document screen annotation content to storage
341342[ ** putSearchableDocument** ] ( PdfApi.md#putSearchableDocument ) | ** PUT** /pdf/\{ name}/ocr | Create searchable PDF document. Generate OCR layer for images in input PDF document.
@@ -3993,7 +3994,7 @@ Name | Type | Description | Notes
39933994
39943995<a name =" getPdfInStorageToXls " ></a >
39953996# ** getPdfInStorageToXls**
3996- > File getPdfInStorageToXls(name, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage)
3997+ > File getPdfInStorageToXls(name, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage, password )
39973998
39983999Converts PDF document (located on storage) to XLS format and returns resulting file in response content
39994000
@@ -4008,6 +4009,7 @@ Name | Type | Description | Notes
40084009 ** uniformWorksheets** | ** Boolean** | Uniform worksheets | [ optional]
40094010 ** folder** | ** String** | The document folder. | [ optional]
40104011 ** storage** | ** String** | The document storage. | [ optional]
4012+ ** password** | ** String** | The password (Base64). | [ optional]
40114013
40124014### Return type
40134015
@@ -4020,7 +4022,7 @@ Name | Type | Description | Notes
40204022
40214023<a name =" getPdfInStorageToXlsx " ></a >
40224024# ** getPdfInStorageToXlsx**
4023- > File getPdfInStorageToXlsx(name, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage)
4025+ > File getPdfInStorageToXlsx(name, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage, password )
40244026
40254027Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
40264028
@@ -4035,6 +4037,7 @@ Name | Type | Description | Notes
40354037 ** uniformWorksheets** | ** Boolean** | Uniform worksheets | [ optional]
40364038 ** folder** | ** String** | The document folder. | [ optional]
40374039 ** storage** | ** String** | The document storage. | [ optional]
4040+ ** password** | ** String** | The password (Base64). | [ optional]
40384041
40394042### Return type
40404043
@@ -6294,7 +6297,7 @@ Name | Type | Description | Notes
62946297
62956298<a name =" postSplitDocument " ></a >
62966299# ** postSplitDocument**
6297- > SplitResultResponse postSplitDocument(name, format, from, to, storage, folder)
6300+ > SplitResultResponse postSplitDocument(name, format, from, to, storage, folder, password )
62986301
62996302Split document to parts.
63006303
@@ -6308,6 +6311,7 @@ Name | Type | Description | Notes
63086311 ** to** | ** Integer** | End page if defined. | [ optional]
63096312 ** storage** | ** String** | The document storage. | [ optional]
63106313 ** folder** | ** String** | The document folder. | [ optional]
6314+ ** password** | ** String** | Base64 encoded password. | [ optional]
63116315
63126316### Return type
63136317
@@ -6320,7 +6324,7 @@ Name | Type | Description | Notes
63206324
63216325<a name =" postSplitRangePdfDocument " ></a >
63226326# ** postSplitRangePdfDocument**
6323- > SplitResultResponse postSplitRangePdfDocument(name, options, storage, folder)
6327+ > SplitResultResponse postSplitRangePdfDocument(name, options, storage, folder, password )
63246328
63256329Split document into ranges.
63266330
@@ -6332,6 +6336,7 @@ Name | Type | Description | Notes
63326336 ** options** | [ ** SplitRangePdfOptions** ] ( SplitRangePdfOptions.md ) | The splitting options. |
63336337 ** storage** | ** String** | The document storage. | [ optional]
63346338 ** folder** | ** String** | The document folder. | [ optional]
6339+ ** password** | ** String** | Base64 encoded password. | [ optional]
63356340
63366341### Return type
63376342
@@ -7960,7 +7965,7 @@ Name | Type | Description | Notes
79607965
79617966<a name =" putPdfInRequestToXls " ></a >
79627967# ** putPdfInRequestToXls**
7963- > AsposeResponse putPdfInRequestToXls(outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, storage, file)
7968+ > AsposeResponse putPdfInRequestToXls(outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, storage, password, file)
79647969
79657970Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
79667971
@@ -7974,6 +7979,7 @@ Name | Type | Description | Notes
79747979 ** scaleFactor** | ** Double** | Scale factor (Obsolete) | [ optional]
79757980 ** uniformWorksheets** | ** Boolean** | Uniform worksheets | [ optional]
79767981 ** storage** | ** String** | The document storage. | [ optional]
7982+ ** password** | ** String** | The password (Base64). | [ optional]
79777983 ** file** | ** File** | A file to be converted. | [ optional]
79787984
79797985### Return type
@@ -7987,7 +7993,7 @@ Name | Type | Description | Notes
79877993
79887994<a name =" putPdfInRequestToXlsx " ></a >
79897995# ** putPdfInRequestToXlsx**
7990- > AsposeResponse putPdfInRequestToXlsx(outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, storage, file)
7996+ > AsposeResponse putPdfInRequestToXlsx(outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, storage, password, file)
79917997
79927998Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
79937999
@@ -8001,6 +8007,7 @@ Name | Type | Description | Notes
80018007 ** scaleFactor** | ** Double** | Scale factor (Obsolete) | [ optional]
80028008 ** uniformWorksheets** | ** Boolean** | Uniform worksheets | [ optional]
80038009 ** storage** | ** String** | The document storage. | [ optional]
8010+ ** password** | ** String** | The password (Base64). | [ optional]
80048011 ** file** | ** File** | A file to be converted. | [ optional]
80058012
80068013### Return type
@@ -8335,7 +8342,7 @@ Name | Type | Description | Notes
83358342
83368343<a name =" putPdfInStorageToXls " ></a >
83378344# ** putPdfInStorageToXls**
8338- > AsposeResponse putPdfInStorageToXls(name, outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage)
8345+ > AsposeResponse putPdfInStorageToXls(name, outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage, password )
83398346
83408347Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
83418348
@@ -8351,6 +8358,7 @@ Name | Type | Description | Notes
83518358 ** uniformWorksheets** | ** Boolean** | Uniform worksheets | [ optional]
83528359 ** folder** | ** String** | The document folder. | [ optional]
83538360 ** storage** | ** String** | The document storage. | [ optional]
8361+ ** password** | ** String** | The password (Base64). | [ optional]
83548362
83558363### Return type
83568364
@@ -8363,7 +8371,7 @@ Name | Type | Description | Notes
83638371
83648372<a name =" putPdfInStorageToXlsx " ></a >
83658373# ** putPdfInStorageToXlsx**
8366- > AsposeResponse putPdfInStorageToXlsx(name, outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage)
8374+ > AsposeResponse putPdfInStorageToXlsx(name, outPath, insertBlankColumnAtFirst, minimizeTheNumberOfWorksheets, scaleFactor, uniformWorksheets, folder, storage, password )
83678375
83688376Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
83698377
@@ -8379,6 +8387,7 @@ Name | Type | Description | Notes
83798387 ** uniformWorksheets** | ** Boolean** | Uniform worksheets | [ optional]
83808388 ** folder** | ** String** | The document folder. | [ optional]
83818389 ** storage** | ** String** | The document storage. | [ optional]
8390+ ** password** | ** String** | The password (Base64). | [ optional]
83828391
83838392### Return type
83848393
@@ -8632,6 +8641,32 @@ Name | Type | Description | Notes
86328641
86338642[ ** ImageResponse** ] ( ImageResponse.md )
86348643
8644+ ### HTTP request headers
8645+
8646+ - ** Content-Type** : application/octet-stream
8647+ - ** Accept** : application/json
8648+
8649+ <a name =" putReplaceMultipleImage " ></a >
8650+ # ** putReplaceMultipleImage**
8651+ > ImagesResponse putReplaceMultipleImage(name, imageIds, imageFilePath, storage, folder, image)
8652+
8653+ Replace document multiple image.
8654+
8655+ ### Parameters
8656+
8657+ Name | Type | Description | Notes
8658+ ------------- | ------------- | ------------- | -------------
8659+ ** name** | ** String** | The document name. |
8660+ ** imageIds** | ** List< ; String> ; ** | The image IDs. |
8661+ ** imageFilePath** | ** String** | Path to image file if specified. Request content is used otherwise. | [ optional]
8662+ ** storage** | ** String** | The document storage. | [ optional]
8663+ ** folder** | ** String** | The document folder. | [ optional]
8664+ ** image** | [ **** ] ( .md ) | Image file. | [ optional]
8665+
8666+ ### Return type
8667+
8668+ [ ** ImagesResponse** ] ( ImagesResponse.md )
8669+
86358670### HTTP request headers
86368671
86378672 - ** Content-Type** : application/octet-stream
0 commit comments