@@ -191,6 +191,7 @@ Method | HTTP request | Description
191
191
* PdfApi* | [ ** moveFile** ] ( PdfApi.md#moveFile ) | ** PUT** /pdf/storage/file/move/\{ srcPath} | Move file
192
192
* PdfApi* | [ ** moveFolder** ] ( PdfApi.md#moveFolder ) | ** PUT** /pdf/storage/folder/move/\{ srcPath} | Move folder
193
193
* PdfApi* | [ ** objectExists** ] ( PdfApi.md#objectExists ) | ** GET** /pdf/storage/exist/\{ path} | Check if file or folder exists
194
+ * PdfApi* | [ ** postAddDocumentAttachment** ] ( PdfApi.md#postAddDocumentAttachment ) | ** POST** /pdf/\{ name}/attachments | Adds a file attachment to the PDF document.
194
195
* PdfApi* | [ ** postAppendDocument** ] ( PdfApi.md#postAppendDocument ) | ** POST** /pdf/\{ name}/appendDocument | Append document to existing one.
195
196
* PdfApi* | [ ** postBookmark** ] ( PdfApi.md#postBookmark ) | ** POST** /pdf/\{ name}/bookmarks/bookmark/\{ bookmarkPath} | Add document bookmarks.
196
197
* PdfApi* | [ ** postChangePasswordDocumentInStorage** ] ( PdfApi.md#postChangePasswordDocumentInStorage ) | ** POST** /pdf/\{ name}/changepassword | Change document password in storage.
@@ -547,7 +548,7 @@ Name | Type | Description | Notes
547
548
548
549
<a name =" deleteDocumentStamps " ></a >
549
550
## ** deleteDocumentStamps**
550
- > deleteDocumentStamps(name, storage, folder)
551
+ > deleteDocumentStamps(name, storage, folder, password )
551
552
552
553
Delete all stamps from the document
553
554
@@ -557,6 +558,7 @@ Name | Type | Description | Notes
557
558
** name** | ** string** | The document name. |
558
559
** storage** | ** string** | The document storage. | [ optional]
559
560
** folder** | ** string** | The document folder. | [ optional]
561
+ ** password** | ** string** | Base64 encoded password. | [ optional]
560
562
561
563
### Return type
562
564
@@ -773,7 +775,7 @@ Name | Type | Description | Notes
773
775
774
776
<a name =" deletePageStamps " ></a >
775
777
## ** deletePageStamps**
776
- > deletePageStamps(name, pageNumber, storage, folder)
778
+ > deletePageStamps(name, pageNumber, storage, folder, password )
777
779
778
780
Delete all stamps from the page
779
781
@@ -784,6 +786,7 @@ Name | Type | Description | Notes
784
786
** pageNumber** | ** number** | The page number. |
785
787
** storage** | ** string** | The document storage. | [ optional]
786
788
** folder** | ** string** | The document folder. | [ optional]
789
+ ** password** | ** string** | Base64 encoded password. | [ optional]
787
790
788
791
### Return type
789
792
@@ -864,7 +867,7 @@ Name | Type | Description | Notes
864
867
865
868
<a name =" deleteStamp " ></a >
866
869
## ** deleteStamp**
867
- > deleteStamp(name, stampId, storage, folder)
870
+ > deleteStamp(name, stampId, storage, folder, password )
868
871
869
872
Delete document stamp by ID
870
873
@@ -875,6 +878,7 @@ Name | Type | Description | Notes
875
878
** stampId** | ** string** | The stamp ID. |
876
879
** storage** | ** string** | The document storage. | [ optional]
877
880
** folder** | ** string** | The document folder. | [ optional]
881
+ ** password** | ** string** | Base64 encoded password. | [ optional]
878
882
879
883
### Return type
880
884
@@ -1090,7 +1094,7 @@ Name | Type | Description | Notes
1090
1094
1091
1095
<a name =" getDocument " ></a >
1092
1096
## ** getDocument**
1093
- > getDocument(name, storage, folder)
1097
+ > getDocument(name, storage, folder, password )
1094
1098
1095
1099
Read common document info.
1096
1100
@@ -1100,6 +1104,7 @@ Name | Type | Description | Notes
1100
1104
** name** | ** string** | The document name. |
1101
1105
** storage** | ** string** | The document storage. | [ optional]
1102
1106
** folder** | ** string** | The document folder. | [ optional]
1107
+ ** password** | ** string** | Base64 encoded password. | [ optional]
1103
1108
1104
1109
### Return type
1105
1110
@@ -3374,7 +3379,7 @@ Name | Type | Description | Notes
3374
3379
3375
3380
<a name =" getPageStamps " ></a >
3376
3381
## ** getPageStamps**
3377
- > getPageStamps(name, pageNumber, storage, folder)
3382
+ > getPageStamps(name, pageNumber, storage, folder, password )
3378
3383
3379
3384
Read page document stamps.
3380
3385
@@ -3385,6 +3390,7 @@ Name | Type | Description | Notes
3385
3390
** pageNumber** | ** number** | The page number. |
3386
3391
** storage** | ** string** | The document storage. | [ optional]
3387
3392
** folder** | ** string** | The document folder. | [ optional]
3393
+ ** password** | ** string** | Base64 encoded password. | [ optional]
3388
3394
3389
3395
### Return type
3390
3396
@@ -4699,6 +4705,29 @@ Name | Type | Description | Notes
4699
4705
4700
4706
[ ** ObjectExist** ] ( ObjectExist.md )
4701
4707
4708
+ ### HTTP request headers
4709
+
4710
+ - ** Content-Type** : application/json
4711
+ - ** Accept** : application/json
4712
+
4713
+ <a name =" postAddDocumentAttachment " ></a >
4714
+ ## ** postAddDocumentAttachment**
4715
+ > postAddDocumentAttachment(name, attachmentInfo, storage, folder)
4716
+
4717
+ Adds a file attachment to the PDF document.
4718
+
4719
+ ### Parameters
4720
+ Name | Type | Description | Notes
4721
+ ------------- | ------------- | ------------- | -------------
4722
+ ** name** | ** string** | The document name. |
4723
+ ** attachmentInfo** | [ ** AttachmentInfo** ] ( AttachmentInfo.md ) | AttachmentInfoAttachmentInfo instance. |
4724
+ ** storage** | ** string** | The document storage. | [ optional]
4725
+ ** folder** | ** string** | The document folder. | [ optional]
4726
+
4727
+ ### Return type
4728
+
4729
+ [ ** AttachmentsResponse** ] ( AttachmentsResponse.md )
4730
+
4702
4731
### HTTP request headers
4703
4732
4704
4733
- ** Content-Type** : application/json
@@ -4946,7 +4975,7 @@ Name | Type | Description | Notes
4946
4975
4947
4976
<a name =" postDocumentPageNumberStamps " ></a >
4948
4977
## ** postDocumentPageNumberStamps**
4949
- > postDocumentPageNumberStamps(name, stamp, startPageNumber, endPageNumber, storage, folder)
4978
+ > postDocumentPageNumberStamps(name, stamp, startPageNumber, endPageNumber, storage, folder, password )
4950
4979
4951
4980
Add document page number stamps.
4952
4981
@@ -4959,6 +4988,7 @@ Name | Type | Description | Notes
4959
4988
** endPageNumber** | ** number** | The end page number. | [ optional]
4960
4989
** storage** | ** string** | The document storage. | [ optional]
4961
4990
** folder** | ** string** | The document folder. | [ optional]
4991
+ ** password** | ** string** | Base64 encoded password. | [ optional]
4962
4992
4963
4993
### Return type
4964
4994
@@ -5455,7 +5485,7 @@ Name | Type | Description | Notes
5455
5485
5456
5486
<a name =" postPageImageStamps " ></a >
5457
5487
## ** postPageImageStamps**
5458
- > postPageImageStamps(name, pageNumber, stamps, storage, folder)
5488
+ > postPageImageStamps(name, pageNumber, stamps, storage, folder, password )
5459
5489
5460
5490
Add document page image stamps.
5461
5491
@@ -5467,6 +5497,7 @@ Name | Type | Description | Notes
5467
5497
** stamps** | [ ** Array< ; ImageStamp> ; ** ] ( ImageStamp.md ) | The array of stamp. |
5468
5498
** storage** | ** string** | The document storage. | [ optional]
5469
5499
** folder** | ** string** | The document folder. | [ optional]
5500
+ ** password** | ** string** | Base64 encoded password. | [ optional]
5470
5501
5471
5502
### Return type
5472
5503
@@ -5575,7 +5606,7 @@ Name | Type | Description | Notes
5575
5606
5576
5607
<a name =" postPagePdfPageStamps " ></a >
5577
5608
## ** postPagePdfPageStamps**
5578
- > postPagePdfPageStamps(name, pageNumber, stamps, storage, folder)
5609
+ > postPagePdfPageStamps(name, pageNumber, stamps, storage, folder, password )
5579
5610
5580
5611
Add document pdf page stamps.
5581
5612
@@ -5587,6 +5618,7 @@ Name | Type | Description | Notes
5587
5618
** stamps** | [ ** Array< ; PdfPageStamp> ; ** ] ( PdfPageStamp.md ) | The array of stamp. |
5588
5619
** storage** | ** string** | The document storage. | [ optional]
5589
5620
** folder** | ** string** | The document folder. | [ optional]
5621
+ ** password** | ** string** | Base64 encoded password. | [ optional]
5590
5622
5591
5623
### Return type
5592
5624
@@ -5888,7 +5920,7 @@ Name | Type | Description | Notes
5888
5920
5889
5921
<a name =" postPageTextStamps " ></a >
5890
5922
## ** postPageTextStamps**
5891
- > postPageTextStamps(name, pageNumber, stamps, storage, folder)
5923
+ > postPageTextStamps(name, pageNumber, stamps, storage, folder, password )
5892
5924
5893
5925
Add document page text stamps.
5894
5926
@@ -5900,6 +5932,7 @@ Name | Type | Description | Notes
5900
5932
** stamps** | [ ** Array< ; TextStamp> ; ** ] ( TextStamp.md ) | The array of stamp. |
5901
5933
** storage** | ** string** | The document storage. | [ optional]
5902
5934
** folder** | ** string** | The document folder. | [ optional]
5935
+ ** password** | ** string** | Base64 encoded password. | [ optional]
5903
5936
5904
5937
### Return type
5905
5938
0 commit comments