@@ -191,6 +191,7 @@ Method | HTTP request | Description
191
191
[ ** moveFile** ] ( PdfApi.md#moveFile ) | ** PUT** /pdf/storage/file/move/\{ srcPath} | Move file
192
192
[ ** moveFolder** ] ( PdfApi.md#moveFolder ) | ** PUT** /pdf/storage/folder/move/\{ srcPath} | Move folder
193
193
[ ** objectExists** ] ( PdfApi.md#objectExists ) | ** GET** /pdf/storage/exist/\{ path} | Check if file or folder exists
194
+ [ ** postAddDocumentAttachment** ] ( PdfApi.md#postAddDocumentAttachment ) | ** POST** /pdf/\{ name}/attachments | Adds a file attachment to the PDF document.
194
195
[ ** postAppendDocument** ] ( PdfApi.md#postAppendDocument ) | ** POST** /pdf/\{ name}/appendDocument | Append document to existing one.
195
196
[ ** postBookmark** ] ( PdfApi.md#postBookmark ) | ** POST** /pdf/\{ name}/bookmarks/bookmark/\{ bookmarkPath} | Add document bookmarks.
196
197
[ ** postChangePasswordDocumentInStorage** ] ( PdfApi.md#postChangePasswordDocumentInStorage ) | ** POST** /pdf/\{ name}/changepassword | Change document password in storage.
@@ -557,7 +558,7 @@ Name | Type | Description | Notes
557
558
558
559
<a name =" deleteDocumentStamps " ></a >
559
560
# ** deleteDocumentStamps**
560
- > AsposeResponse deleteDocumentStamps(name, storage, folder)
561
+ > AsposeResponse deleteDocumentStamps(name, storage, folder, password )
561
562
562
563
Delete all stamps from the document
563
564
@@ -568,6 +569,7 @@ Name | Type | Description | Notes
568
569
** name** | ** String** | The document name. |
569
570
** storage** | ** String** | The document storage. | [ optional]
570
571
** folder** | ** String** | The document folder. | [ optional]
572
+ ** password** | ** String** | Base64 encoded password. | [ optional]
571
573
572
574
### Return type
573
575
@@ -793,7 +795,7 @@ Name | Type | Description | Notes
793
795
794
796
<a name =" deletePageStamps " ></a >
795
797
# ** deletePageStamps**
796
- > AsposeResponse deletePageStamps(name, pageNumber, storage, folder)
798
+ > AsposeResponse deletePageStamps(name, pageNumber, storage, folder, password )
797
799
798
800
Delete all stamps from the page
799
801
@@ -805,6 +807,7 @@ Name | Type | Description | Notes
805
807
** pageNumber** | ** Integer** | The page number. |
806
808
** storage** | ** String** | The document storage. | [ optional]
807
809
** folder** | ** String** | The document folder. | [ optional]
810
+ ** password** | ** String** | Base64 encoded password. | [ optional]
808
811
809
812
### Return type
810
813
@@ -888,7 +891,7 @@ Name | Type | Description | Notes
888
891
889
892
<a name =" deleteStamp " ></a >
890
893
# ** deleteStamp**
891
- > AsposeResponse deleteStamp(name, stampId, storage, folder)
894
+ > AsposeResponse deleteStamp(name, stampId, storage, folder, password )
892
895
893
896
Delete document stamp by ID
894
897
@@ -900,6 +903,7 @@ Name | Type | Description | Notes
900
903
** stampId** | ** String** | The stamp ID. |
901
904
** storage** | ** String** | The document storage. | [ optional]
902
905
** folder** | ** String** | The document folder. | [ optional]
906
+ ** password** | ** String** | Base64 encoded password. | [ optional]
903
907
904
908
### Return type
905
909
@@ -1124,7 +1128,7 @@ Name | Type | Description | Notes
1124
1128
1125
1129
<a name =" getDocument " ></a >
1126
1130
# ** getDocument**
1127
- > DocumentResponse getDocument(name, storage, folder)
1131
+ > DocumentResponse getDocument(name, storage, folder, password )
1128
1132
1129
1133
Read common document info.
1130
1134
@@ -1135,6 +1139,7 @@ Name | Type | Description | Notes
1135
1139
** name** | ** String** | The document name. |
1136
1140
** storage** | ** String** | The document storage. | [ optional]
1137
1141
** folder** | ** String** | The document folder. | [ optional]
1142
+ ** password** | ** String** | Base64 encoded password. | [ optional]
1138
1143
1139
1144
### Return type
1140
1145
@@ -3485,7 +3490,7 @@ Name | Type | Description | Notes
3485
3490
3486
3491
<a name =" getPageStamps " ></a >
3487
3492
# ** getPageStamps**
3488
- > StampsInfoResponse getPageStamps(name, pageNumber, storage, folder)
3493
+ > StampsInfoResponse getPageStamps(name, pageNumber, storage, folder, password )
3489
3494
3490
3495
Read page document stamps.
3491
3496
@@ -3497,6 +3502,7 @@ Name | Type | Description | Notes
3497
3502
** pageNumber** | ** Integer** | The page number. |
3498
3503
** storage** | ** String** | The document storage. | [ optional]
3499
3504
** folder** | ** String** | The document folder. | [ optional]
3505
+ ** password** | ** String** | Base64 encoded password. | [ optional]
3500
3506
3501
3507
### Return type
3502
3508
@@ -4888,6 +4894,30 @@ Name | Type | Description | Notes
4888
4894
4889
4895
[ ** ObjectExist** ] ( ObjectExist.md )
4890
4896
4897
+ ### HTTP request headers
4898
+
4899
+ - ** Content-Type** : application/json
4900
+ - ** Accept** : application/json
4901
+
4902
+ <a name =" postAddDocumentAttachment " ></a >
4903
+ # ** postAddDocumentAttachment**
4904
+ > AttachmentsResponse postAddDocumentAttachment(name, attachmentInfo, storage, folder)
4905
+
4906
+ Adds a file attachment to the PDF document.
4907
+
4908
+ ### Parameters
4909
+
4910
+ Name | Type | Description | Notes
4911
+ ------------- | ------------- | ------------- | -------------
4912
+ ** name** | ** String** | The document name. |
4913
+ ** attachmentInfo** | [ ** AttachmentInfo** ] ( AttachmentInfo.md ) | AttachmentInfoAttachmentInfo instance. |
4914
+ ** storage** | ** String** | The document storage. | [ optional]
4915
+ ** folder** | ** String** | The document folder. | [ optional]
4916
+
4917
+ ### Return type
4918
+
4919
+ [ ** AttachmentsResponse** ] ( AttachmentsResponse.md )
4920
+
4891
4921
### HTTP request headers
4892
4922
4893
4923
- ** Content-Type** : application/json
@@ -5145,7 +5175,7 @@ Name | Type | Description | Notes
5145
5175
5146
5176
<a name =" postDocumentPageNumberStamps " ></a >
5147
5177
# ** postDocumentPageNumberStamps**
5148
- > AsposeResponse postDocumentPageNumberStamps(name, stamp, startPageNumber, endPageNumber, storage, folder)
5178
+ > AsposeResponse postDocumentPageNumberStamps(name, stamp, startPageNumber, endPageNumber, storage, folder, password )
5149
5179
5150
5180
Add document page number stamps.
5151
5181
@@ -5159,6 +5189,7 @@ Name | Type | Description | Notes
5159
5189
** endPageNumber** | ** Integer** | The end page number. | [ optional]
5160
5190
** storage** | ** String** | The document storage. | [ optional]
5161
5191
** folder** | ** String** | The document folder. | [ optional]
5192
+ ** password** | ** String** | Base64 encoded password. | [ optional]
5162
5193
5163
5194
### Return type
5164
5195
@@ -5675,7 +5706,7 @@ Name | Type | Description | Notes
5675
5706
5676
5707
<a name =" postPageImageStamps " ></a >
5677
5708
# ** postPageImageStamps**
5678
- > AsposeResponse postPageImageStamps(name, pageNumber, stamps, storage, folder)
5709
+ > AsposeResponse postPageImageStamps(name, pageNumber, stamps, storage, folder, password )
5679
5710
5680
5711
Add document page image stamps.
5681
5712
@@ -5688,6 +5719,7 @@ Name | Type | Description | Notes
5688
5719
** stamps** | [ ** List< ; ImageStamp> ; ** ] ( ImageStamp.md ) | The array of stamp. |
5689
5720
** storage** | ** String** | The document storage. | [ optional]
5690
5721
** folder** | ** String** | The document folder. | [ optional]
5722
+ ** password** | ** String** | Base64 encoded password. | [ optional]
5691
5723
5692
5724
### Return type
5693
5725
@@ -5800,7 +5832,7 @@ Name | Type | Description | Notes
5800
5832
5801
5833
<a name =" postPagePdfPageStamps " ></a >
5802
5834
# ** postPagePdfPageStamps**
5803
- > AsposeResponse postPagePdfPageStamps(name, pageNumber, stamps, storage, folder)
5835
+ > AsposeResponse postPagePdfPageStamps(name, pageNumber, stamps, storage, folder, password )
5804
5836
5805
5837
Add document pdf page stamps.
5806
5838
@@ -5813,6 +5845,7 @@ Name | Type | Description | Notes
5813
5845
** stamps** | [ ** List< ; PdfPageStamp> ; ** ] ( PdfPageStamp.md ) | The array of stamp. |
5814
5846
** storage** | ** String** | The document storage. | [ optional]
5815
5847
** folder** | ** String** | The document folder. | [ optional]
5848
+ ** password** | ** String** | Base64 encoded password. | [ optional]
5816
5849
5817
5850
### Return type
5818
5851
@@ -6126,7 +6159,7 @@ Name | Type | Description | Notes
6126
6159
6127
6160
<a name =" postPageTextStamps " ></a >
6128
6161
# ** postPageTextStamps**
6129
- > AsposeResponse postPageTextStamps(name, pageNumber, stamps, storage, folder)
6162
+ > AsposeResponse postPageTextStamps(name, pageNumber, stamps, storage, folder, password )
6130
6163
6131
6164
Add document page text stamps.
6132
6165
@@ -6139,6 +6172,7 @@ Name | Type | Description | Notes
6139
6172
** stamps** | [ ** List< ; TextStamp> ; ** ] ( TextStamp.md ) | The array of stamp. |
6140
6173
** storage** | ** String** | The document storage. | [ optional]
6141
6174
** folder** | ** String** | The document folder. | [ optional]
6175
+ ** password** | ** String** | Base64 encoded password. | [ optional]
6142
6176
6143
6177
### Return type
6144
6178
0 commit comments