aspose_pdf_cloud 19.6.0 → 19.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +19 -4
- data/docs/DocumentPrivilege.md +1 -1
- data/docs/PdfApi.md +388 -1
- data/lib/aspose_pdf_cloud/api/pdf_api.rb +1280 -125
- data/lib/aspose_pdf_cloud/models/document_privilege.rb +1 -1
- data/lib/aspose_pdf_cloud/version.rb +1 -1
- data/test/pdf_tests.rb +230 -2
- data/test_data/FormData.fdf +0 -0
- data/test_data/FormData.pdf +0 -0
- data/test_data/FormDataXfa_in.pdf +0 -0
- data/test_data/FormDataXfa_in.xml +8 -0
- data/test_data/FormDataXfdf_in.pdf +0 -0
- data/test_data/FormDataXfdf_in.xfdf +21 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9f7c77ec66bd9914fe85871ba60e60f811f3b15c45ecee88a40f737e8177c51
|
4
|
+
data.tar.gz: f9815aae583bdfb57fac05e2f739caccb00e16e988cdff149cd7bc6929dff838
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12c6ae5b081afd1d349e2edf593763708094a243e7aa04333416392e6b3a2791f86c9c5d52a4a967f963cc1b88ae28fa2855afebc5c8f05127a5f692e5b91003
|
7
|
+
data.tar.gz: 5df0945770beabb3d02d7e3c4a988e66be2ba71542fd396c0630295f08253e3d57712a96b2ae8969685b861a3e3e197b29b25b24f2ad165e32180c36d8a84b01
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Aspose.PDF Cloud
|
2
2
|
|
3
3
|
- API version: 3.0
|
4
|
-
- Package version: 19.
|
4
|
+
- Package version: 19.7.0
|
5
5
|
|
6
6
|
[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of Pdf documents in the cloud.
|
7
7
|
|
@@ -22,15 +22,15 @@ gem build aspose_pdf_cloud.gemspec
|
|
22
22
|
Then either install the gem locally:
|
23
23
|
|
24
24
|
```shell
|
25
|
-
gem install ./aspose_pdf_cloud-19.
|
25
|
+
gem install ./aspose_pdf_cloud-19.7.0.gem
|
26
26
|
```
|
27
|
-
(for development, run `gem install --dev ./aspose_pdf_cloud-19.
|
27
|
+
(for development, run `gem install --dev ./aspose_pdf_cloud-19.7.0.gem` to install the development dependencies)
|
28
28
|
|
29
29
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
30
30
|
|
31
31
|
Finally add this to the Gemfile:
|
32
32
|
|
33
|
-
gem 'aspose_pdf_cloud', '~> 19.
|
33
|
+
gem 'aspose_pdf_cloud', '~> 19.7.0'
|
34
34
|
|
35
35
|
### Install from Git
|
36
36
|
|
@@ -151,6 +151,9 @@ Class | Method | HTTP request | Description
|
|
151
151
|
*AsposePdfCloud::PdfApi* | [**get_document_underline_annotations**](docs/PdfApi.md#get_document_underline_annotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
|
152
152
|
*AsposePdfCloud::PdfApi* | [**get_download_document_attachment_by_index**](docs/PdfApi.md#get_download_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
|
153
153
|
*AsposePdfCloud::PdfApi* | [**get_epub_in_storage_to_pdf**](docs/PdfApi.md#get_epub_in_storage_to_pdf) | **GET** /pdf/create/epub | Convert EPUB file (located on storage) to PDF format and return resulting file in response.
|
154
|
+
*AsposePdfCloud::PdfApi* | [**get_export_fields_from_pdf_to_fdf_in_storage**](docs/PdfApi.md#get_export_fields_from_pdf_to_fdf_in_storage) | **GET** /pdf/\{name}/export/fdf | Export fields from from PDF in storage to FDF file.
|
155
|
+
*AsposePdfCloud::PdfApi* | [**get_export_fields_from_pdf_to_xfdf_in_storage**](docs/PdfApi.md#get_export_fields_from_pdf_to_xfdf_in_storage) | **GET** /pdf/\{name}/export/xfdf | Export fields from from PDF in storage to XFDF file.
|
156
|
+
*AsposePdfCloud::PdfApi* | [**get_export_fields_from_pdf_to_xml_in_storage**](docs/PdfApi.md#get_export_fields_from_pdf_to_xml_in_storage) | **GET** /pdf/\{name}/export/xml | Export fields from from PDF in storage to XML file.
|
154
157
|
*AsposePdfCloud::PdfApi* | [**get_field**](docs/PdfApi.md#get_field) | **GET** /pdf/\{name}/fields/\{fieldName} | Get document field by name.
|
155
158
|
*AsposePdfCloud::PdfApi* | [**get_fields**](docs/PdfApi.md#get_fields) | **GET** /pdf/\{name}/fields | Get document fields.
|
156
159
|
*AsposePdfCloud::PdfApi* | [**get_file_attachment_annotation**](docs/PdfApi.md#get_file_attachment_annotation) | **GET** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Read document page FileAttachment annotation by ID.
|
@@ -166,6 +169,9 @@ Class | Method | HTTP request | Description
|
|
166
169
|
*AsposePdfCloud::PdfApi* | [**get_image_extract_as_png**](docs/PdfApi.md#get_image_extract_as_png) | **GET** /pdf/\{name}/images/\{imageId}/extract/png | Extract document image in PNG format
|
167
170
|
*AsposePdfCloud::PdfApi* | [**get_image_extract_as_tiff**](docs/PdfApi.md#get_image_extract_as_tiff) | **GET** /pdf/\{name}/images/\{imageId}/extract/tiff | Extract document image in TIFF format
|
168
171
|
*AsposePdfCloud::PdfApi* | [**get_images**](docs/PdfApi.md#get_images) | **GET** /pdf/\{name}/pages/\{pageNumber}/images | Read document images.
|
172
|
+
*AsposePdfCloud::PdfApi* | [**get_import_fields_from_fdf_in_storage**](docs/PdfApi.md#get_import_fields_from_fdf_in_storage) | **GET** /pdf/\{name}/import/fdf | Update fields from FDF file in storage.
|
173
|
+
*AsposePdfCloud::PdfApi* | [**get_import_fields_from_xfdf_in_storage**](docs/PdfApi.md#get_import_fields_from_xfdf_in_storage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
|
174
|
+
*AsposePdfCloud::PdfApi* | [**get_import_fields_from_xml_in_storage**](docs/PdfApi.md#get_import_fields_from_xml_in_storage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
|
169
175
|
*AsposePdfCloud::PdfApi* | [**get_ink_annotation**](docs/PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
|
170
176
|
*AsposePdfCloud::PdfApi* | [**get_la_te_x_in_storage_to_pdf**](docs/PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
|
171
177
|
*AsposePdfCloud::PdfApi* | [**get_line_annotation**](docs/PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
|
@@ -262,6 +268,9 @@ Class | Method | HTTP request | Description
|
|
262
268
|
*AsposePdfCloud::PdfApi* | [**post_document_text_replace**](docs/PdfApi.md#post_document_text_replace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
|
263
269
|
*AsposePdfCloud::PdfApi* | [**post_encrypt_document_in_storage**](docs/PdfApi.md#post_encrypt_document_in_storage) | **POST** /pdf/\{name}/encrypt | Encrypt document in storage.
|
264
270
|
*AsposePdfCloud::PdfApi* | [**post_flatten_document**](docs/PdfApi.md#post_flatten_document) | **POST** /pdf/\{name}/flatten | Flatten the document.
|
271
|
+
*AsposePdfCloud::PdfApi* | [**post_import_fields_from_fdf**](docs/PdfApi.md#post_import_fields_from_fdf) | **POST** /pdf/\{name}/import/fdf | Update fields from FDF file in request.
|
272
|
+
*AsposePdfCloud::PdfApi* | [**post_import_fields_from_xfdf**](docs/PdfApi.md#post_import_fields_from_xfdf) | **POST** /pdf/\{name}/import/xfdf | Update fields from XFDF file in request.
|
273
|
+
*AsposePdfCloud::PdfApi* | [**post_import_fields_from_xml**](docs/PdfApi.md#post_import_fields_from_xml) | **POST** /pdf/\{name}/import/xml | Update fields from XML file in request.
|
265
274
|
*AsposePdfCloud::PdfApi* | [**post_insert_image**](docs/PdfApi.md#post_insert_image) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
|
266
275
|
*AsposePdfCloud::PdfApi* | [**post_move_page**](docs/PdfApi.md#post_move_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/movePage | Move page to new position.
|
267
276
|
*AsposePdfCloud::PdfApi* | [**post_optimize_document**](docs/PdfApi.md#post_optimize_document) | **POST** /pdf/\{name}/optimize | Optimize document.
|
@@ -305,6 +314,9 @@ Class | Method | HTTP request | Description
|
|
305
314
|
*AsposePdfCloud::PdfApi* | [**put_decrypt_document**](docs/PdfApi.md#put_decrypt_document) | **PUT** /pdf/decrypt | Decrypt document from content.
|
306
315
|
*AsposePdfCloud::PdfApi* | [**put_encrypt_document**](docs/PdfApi.md#put_encrypt_document) | **PUT** /pdf/encrypt | Encrypt document from content.
|
307
316
|
*AsposePdfCloud::PdfApi* | [**put_epub_in_storage_to_pdf**](docs/PdfApi.md#put_epub_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
|
317
|
+
*AsposePdfCloud::PdfApi* | [**put_export_fields_from_pdf_to_fdf_in_storage**](docs/PdfApi.md#put_export_fields_from_pdf_to_fdf_in_storage) | **PUT** /pdf/\{name}/export/fdf | Export fields from from PDF in storage to FDF file in storage.
|
318
|
+
*AsposePdfCloud::PdfApi* | [**put_export_fields_from_pdf_to_xfdf_in_storage**](docs/PdfApi.md#put_export_fields_from_pdf_to_xfdf_in_storage) | **PUT** /pdf/\{name}/export/xfdf | Export fields from from PDF in storage to XFDF file in storage.
|
319
|
+
*AsposePdfCloud::PdfApi* | [**put_export_fields_from_pdf_to_xml_in_storage**](docs/PdfApi.md#put_export_fields_from_pdf_to_xml_in_storage) | **PUT** /pdf/\{name}/export/xml | Export fields from from PDF in storage to XML file in storage.
|
308
320
|
*AsposePdfCloud::PdfApi* | [**put_fields_flatten**](docs/PdfApi.md#put_fields_flatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
|
309
321
|
*AsposePdfCloud::PdfApi* | [**put_file_attachment_annotation**](docs/PdfApi.md#put_file_attachment_annotation) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Replace document FileAttachment annotation
|
310
322
|
*AsposePdfCloud::PdfApi* | [**put_file_attachment_annotation_data_extract**](docs/PdfApi.md#put_file_attachment_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId}/data/extract | Extract document FileAttachment annotation content to storage
|
@@ -320,6 +332,9 @@ Class | Method | HTTP request | Description
|
|
320
332
|
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_jpeg**](docs/PdfApi.md#put_images_extract_as_jpeg) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/jpeg | Extract document images in JPEG format to folder.
|
321
333
|
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_png**](docs/PdfApi.md#put_images_extract_as_png) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/png | Extract document images in PNG format to folder.
|
322
334
|
*AsposePdfCloud::PdfApi* | [**put_images_extract_as_tiff**](docs/PdfApi.md#put_images_extract_as_tiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/tiff | Extract document images in TIFF format to folder.
|
335
|
+
*AsposePdfCloud::PdfApi* | [**put_import_fields_from_fdf_in_storage**](docs/PdfApi.md#put_import_fields_from_fdf_in_storage) | **PUT** /pdf/\{name}/import/fdf | Update fields from FDF file in storage.
|
336
|
+
*AsposePdfCloud::PdfApi* | [**put_import_fields_from_xfdf_in_storage**](docs/PdfApi.md#put_import_fields_from_xfdf_in_storage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
|
337
|
+
*AsposePdfCloud::PdfApi* | [**put_import_fields_from_xml_in_storage**](docs/PdfApi.md#put_import_fields_from_xml_in_storage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
|
323
338
|
*AsposePdfCloud::PdfApi* | [**put_ink_annotation**](docs/PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
|
324
339
|
*AsposePdfCloud::PdfApi* | [**put_la_te_x_in_storage_to_pdf**](docs/PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert LaTeX file (located on storage) to PDF format and upload resulting file to storage.
|
325
340
|
*AsposePdfCloud::PdfApi* | [**put_line_annotation**](docs/PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
|
data/docs/DocumentPrivilege.md
CHANGED
data/docs/PdfApi.md
CHANGED
@@ -66,6 +66,9 @@ Method | HTTP request | Description
|
|
66
66
|
[**get_document_underline_annotations**](PdfApi.md#get_document_underline_annotations) | **GET** /pdf/\{name}/annotations/underline | Read document underline annotations.
|
67
67
|
[**get_download_document_attachment_by_index**](PdfApi.md#get_download_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex}/download | Download document attachment content by its index.
|
68
68
|
[**get_epub_in_storage_to_pdf**](PdfApi.md#get_epub_in_storage_to_pdf) | **GET** /pdf/create/epub | Convert EPUB file (located on storage) to PDF format and return resulting file in response.
|
69
|
+
[**get_export_fields_from_pdf_to_fdf_in_storage**](PdfApi.md#get_export_fields_from_pdf_to_fdf_in_storage) | **GET** /pdf/\{name}/export/fdf | Export fields from from PDF in storage to FDF file.
|
70
|
+
[**get_export_fields_from_pdf_to_xfdf_in_storage**](PdfApi.md#get_export_fields_from_pdf_to_xfdf_in_storage) | **GET** /pdf/\{name}/export/xfdf | Export fields from from PDF in storage to XFDF file.
|
71
|
+
[**get_export_fields_from_pdf_to_xml_in_storage**](PdfApi.md#get_export_fields_from_pdf_to_xml_in_storage) | **GET** /pdf/\{name}/export/xml | Export fields from from PDF in storage to XML file.
|
69
72
|
[**get_field**](PdfApi.md#get_field) | **GET** /pdf/\{name}/fields/\{fieldName} | Get document field by name.
|
70
73
|
[**get_fields**](PdfApi.md#get_fields) | **GET** /pdf/\{name}/fields | Get document fields.
|
71
74
|
[**get_file_attachment_annotation**](PdfApi.md#get_file_attachment_annotation) | **GET** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Read document page FileAttachment annotation by ID.
|
@@ -81,6 +84,9 @@ Method | HTTP request | Description
|
|
81
84
|
[**get_image_extract_as_png**](PdfApi.md#get_image_extract_as_png) | **GET** /pdf/\{name}/images/\{imageId}/extract/png | Extract document image in PNG format
|
82
85
|
[**get_image_extract_as_tiff**](PdfApi.md#get_image_extract_as_tiff) | **GET** /pdf/\{name}/images/\{imageId}/extract/tiff | Extract document image in TIFF format
|
83
86
|
[**get_images**](PdfApi.md#get_images) | **GET** /pdf/\{name}/pages/\{pageNumber}/images | Read document images.
|
87
|
+
[**get_import_fields_from_fdf_in_storage**](PdfApi.md#get_import_fields_from_fdf_in_storage) | **GET** /pdf/\{name}/import/fdf | Update fields from FDF file in storage.
|
88
|
+
[**get_import_fields_from_xfdf_in_storage**](PdfApi.md#get_import_fields_from_xfdf_in_storage) | **GET** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
|
89
|
+
[**get_import_fields_from_xml_in_storage**](PdfApi.md#get_import_fields_from_xml_in_storage) | **GET** /pdf/\{name}/import/xml | Import from XML file (located on storage) to PDF format and return resulting file in response.
|
84
90
|
[**get_ink_annotation**](PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
|
85
91
|
[**get_la_te_x_in_storage_to_pdf**](PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
|
86
92
|
[**get_line_annotation**](PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
|
@@ -177,6 +183,9 @@ Method | HTTP request | Description
|
|
177
183
|
[**post_document_text_replace**](PdfApi.md#post_document_text_replace) | **POST** /pdf/\{name}/text/replace | Document's replace text method.
|
178
184
|
[**post_encrypt_document_in_storage**](PdfApi.md#post_encrypt_document_in_storage) | **POST** /pdf/\{name}/encrypt | Encrypt document in storage.
|
179
185
|
[**post_flatten_document**](PdfApi.md#post_flatten_document) | **POST** /pdf/\{name}/flatten | Flatten the document.
|
186
|
+
[**post_import_fields_from_fdf**](PdfApi.md#post_import_fields_from_fdf) | **POST** /pdf/\{name}/import/fdf | Update fields from FDF file in request.
|
187
|
+
[**post_import_fields_from_xfdf**](PdfApi.md#post_import_fields_from_xfdf) | **POST** /pdf/\{name}/import/xfdf | Update fields from XFDF file in request.
|
188
|
+
[**post_import_fields_from_xml**](PdfApi.md#post_import_fields_from_xml) | **POST** /pdf/\{name}/import/xml | Update fields from XML file in request.
|
180
189
|
[**post_insert_image**](PdfApi.md#post_insert_image) | **POST** /pdf/\{name}/pages/\{pageNumber}/images | Insert image to document page.
|
181
190
|
[**post_move_page**](PdfApi.md#post_move_page) | **POST** /pdf/\{name}/pages/\{pageNumber}/movePage | Move page to new position.
|
182
191
|
[**post_optimize_document**](PdfApi.md#post_optimize_document) | **POST** /pdf/\{name}/optimize | Optimize document.
|
@@ -220,6 +229,9 @@ Method | HTTP request | Description
|
|
220
229
|
[**put_decrypt_document**](PdfApi.md#put_decrypt_document) | **PUT** /pdf/decrypt | Decrypt document from content.
|
221
230
|
[**put_encrypt_document**](PdfApi.md#put_encrypt_document) | **PUT** /pdf/encrypt | Encrypt document from content.
|
222
231
|
[**put_epub_in_storage_to_pdf**](PdfApi.md#put_epub_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/epub | Convert EPUB file (located on storage) to PDF format and upload resulting file to storage.
|
232
|
+
[**put_export_fields_from_pdf_to_fdf_in_storage**](PdfApi.md#put_export_fields_from_pdf_to_fdf_in_storage) | **PUT** /pdf/\{name}/export/fdf | Export fields from from PDF in storage to FDF file in storage.
|
233
|
+
[**put_export_fields_from_pdf_to_xfdf_in_storage**](PdfApi.md#put_export_fields_from_pdf_to_xfdf_in_storage) | **PUT** /pdf/\{name}/export/xfdf | Export fields from from PDF in storage to XFDF file in storage.
|
234
|
+
[**put_export_fields_from_pdf_to_xml_in_storage**](PdfApi.md#put_export_fields_from_pdf_to_xml_in_storage) | **PUT** /pdf/\{name}/export/xml | Export fields from from PDF in storage to XML file in storage.
|
223
235
|
[**put_fields_flatten**](PdfApi.md#put_fields_flatten) | **PUT** /pdf/\{name}/fields/flatten | Flatten form fields in document.
|
224
236
|
[**put_file_attachment_annotation**](PdfApi.md#put_file_attachment_annotation) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId} | Replace document FileAttachment annotation
|
225
237
|
[**put_file_attachment_annotation_data_extract**](PdfApi.md#put_file_attachment_annotation_data_extract) | **PUT** /pdf/\{name}/annotations/fileattachment/\{annotationId}/data/extract | Extract document FileAttachment annotation content to storage
|
@@ -235,6 +247,9 @@ Method | HTTP request | Description
|
|
235
247
|
[**put_images_extract_as_jpeg**](PdfApi.md#put_images_extract_as_jpeg) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/jpeg | Extract document images in JPEG format to folder.
|
236
248
|
[**put_images_extract_as_png**](PdfApi.md#put_images_extract_as_png) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/png | Extract document images in PNG format to folder.
|
237
249
|
[**put_images_extract_as_tiff**](PdfApi.md#put_images_extract_as_tiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/images/extract/tiff | Extract document images in TIFF format to folder.
|
250
|
+
[**put_import_fields_from_fdf_in_storage**](PdfApi.md#put_import_fields_from_fdf_in_storage) | **PUT** /pdf/\{name}/import/fdf | Update fields from FDF file in storage.
|
251
|
+
[**put_import_fields_from_xfdf_in_storage**](PdfApi.md#put_import_fields_from_xfdf_in_storage) | **PUT** /pdf/\{name}/import/xfdf | Update fields from XFDF file in storage.
|
252
|
+
[**put_import_fields_from_xml_in_storage**](PdfApi.md#put_import_fields_from_xml_in_storage) | **PUT** /pdf/\{name}/import/xml | Update fields from XML file in storage.
|
238
253
|
[**put_ink_annotation**](PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
|
239
254
|
[**put_la_te_x_in_storage_to_pdf**](PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert LaTeX file (located on storage) to PDF format and upload resulting file to storage.
|
240
255
|
[**put_line_annotation**](PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
|
@@ -1818,6 +1833,78 @@ Name | Type | Description | Notes
|
|
1818
1833
|
|
1819
1834
|
|
1820
1835
|
|
1836
|
+
# **get_export_fields_from_pdf_to_fdf_in_storage**
|
1837
|
+
> File get_export_fields_from_pdf_to_fdf_in_storage(name, opts)
|
1838
|
+
|
1839
|
+
Export fields from from PDF in storage to FDF file.
|
1840
|
+
|
1841
|
+
### Parameters
|
1842
|
+
|
1843
|
+
Name | Type | Description | Notes
|
1844
|
+
------------- | ------------- | ------------- | -------------
|
1845
|
+
**name** | **String**| The document name. |
|
1846
|
+
**storage** | **String**| The document storage. | [optional]
|
1847
|
+
**folder** | **String**| The document folder. | [optional]
|
1848
|
+
|
1849
|
+
### Return type
|
1850
|
+
|
1851
|
+
**File**
|
1852
|
+
|
1853
|
+
### HTTP request headers
|
1854
|
+
|
1855
|
+
- **Content-Type**: application/json
|
1856
|
+
- **Accept**: multipart/form-data
|
1857
|
+
|
1858
|
+
|
1859
|
+
|
1860
|
+
# **get_export_fields_from_pdf_to_xfdf_in_storage**
|
1861
|
+
> File get_export_fields_from_pdf_to_xfdf_in_storage(name, opts)
|
1862
|
+
|
1863
|
+
Export fields from from PDF in storage to XFDF file.
|
1864
|
+
|
1865
|
+
### Parameters
|
1866
|
+
|
1867
|
+
Name | Type | Description | Notes
|
1868
|
+
------------- | ------------- | ------------- | -------------
|
1869
|
+
**name** | **String**| The document name. |
|
1870
|
+
**storage** | **String**| The document storage. | [optional]
|
1871
|
+
**folder** | **String**| The document folder. | [optional]
|
1872
|
+
|
1873
|
+
### Return type
|
1874
|
+
|
1875
|
+
**File**
|
1876
|
+
|
1877
|
+
### HTTP request headers
|
1878
|
+
|
1879
|
+
- **Content-Type**: application/json
|
1880
|
+
- **Accept**: multipart/form-data
|
1881
|
+
|
1882
|
+
|
1883
|
+
|
1884
|
+
# **get_export_fields_from_pdf_to_xml_in_storage**
|
1885
|
+
> File get_export_fields_from_pdf_to_xml_in_storage(name, opts)
|
1886
|
+
|
1887
|
+
Export fields from from PDF in storage to XML file.
|
1888
|
+
|
1889
|
+
### Parameters
|
1890
|
+
|
1891
|
+
Name | Type | Description | Notes
|
1892
|
+
------------- | ------------- | ------------- | -------------
|
1893
|
+
**name** | **String**| The document name. |
|
1894
|
+
**storage** | **String**| The document storage. | [optional]
|
1895
|
+
**folder** | **String**| The document folder. | [optional]
|
1896
|
+
|
1897
|
+
### Return type
|
1898
|
+
|
1899
|
+
**File**
|
1900
|
+
|
1901
|
+
### HTTP request headers
|
1902
|
+
|
1903
|
+
- **Content-Type**: application/json
|
1904
|
+
- **Accept**: multipart/form-data
|
1905
|
+
|
1906
|
+
|
1907
|
+
|
1821
1908
|
# **get_field**
|
1822
1909
|
> FieldResponse get_field(name, field_name, opts)
|
1823
1910
|
|
@@ -1828,7 +1915,7 @@ Get document field by name.
|
|
1828
1915
|
Name | Type | Description | Notes
|
1829
1916
|
------------- | ------------- | ------------- | -------------
|
1830
1917
|
**name** | **String**| The document name. |
|
1831
|
-
**field_name** | **String**| The field name
|
1918
|
+
**field_name** | **String**| The field name (name should be encoded). |
|
1832
1919
|
**storage** | **String**| The document storage. | [optional]
|
1833
1920
|
**folder** | **String**| The document folder. | [optional]
|
1834
1921
|
|
@@ -2202,6 +2289,81 @@ Name | Type | Description | Notes
|
|
2202
2289
|
|
2203
2290
|
|
2204
2291
|
|
2292
|
+
# **get_import_fields_from_fdf_in_storage**
|
2293
|
+
> File get_import_fields_from_fdf_in_storage(name, fdf_file_path, opts)
|
2294
|
+
|
2295
|
+
Update fields from FDF file in storage.
|
2296
|
+
|
2297
|
+
### Parameters
|
2298
|
+
|
2299
|
+
Name | Type | Description | Notes
|
2300
|
+
------------- | ------------- | ------------- | -------------
|
2301
|
+
**name** | **String**| The document name. |
|
2302
|
+
**fdf_file_path** | **String**| The Fdf file path. |
|
2303
|
+
**storage** | **String**| The document storage. | [optional]
|
2304
|
+
**folder** | **String**| The document folder. | [optional]
|
2305
|
+
|
2306
|
+
### Return type
|
2307
|
+
|
2308
|
+
**File**
|
2309
|
+
|
2310
|
+
### HTTP request headers
|
2311
|
+
|
2312
|
+
- **Content-Type**: application/json
|
2313
|
+
- **Accept**: multipart/form-data
|
2314
|
+
|
2315
|
+
|
2316
|
+
|
2317
|
+
# **get_import_fields_from_xfdf_in_storage**
|
2318
|
+
> File get_import_fields_from_xfdf_in_storage(name, xfdf_file_path, opts)
|
2319
|
+
|
2320
|
+
Update fields from XFDF file in storage.
|
2321
|
+
|
2322
|
+
### Parameters
|
2323
|
+
|
2324
|
+
Name | Type | Description | Notes
|
2325
|
+
------------- | ------------- | ------------- | -------------
|
2326
|
+
**name** | **String**| The document name. |
|
2327
|
+
**xfdf_file_path** | **String**| The XFDF file path. |
|
2328
|
+
**storage** | **String**| The document storage. | [optional]
|
2329
|
+
**folder** | **String**| The document folder. | [optional]
|
2330
|
+
|
2331
|
+
### Return type
|
2332
|
+
|
2333
|
+
**File**
|
2334
|
+
|
2335
|
+
### HTTP request headers
|
2336
|
+
|
2337
|
+
- **Content-Type**: application/json
|
2338
|
+
- **Accept**: multipart/form-data
|
2339
|
+
|
2340
|
+
|
2341
|
+
|
2342
|
+
# **get_import_fields_from_xml_in_storage**
|
2343
|
+
> File get_import_fields_from_xml_in_storage(name, xml_file_path, opts)
|
2344
|
+
|
2345
|
+
Import from XML file (located on storage) to PDF format and return resulting file in response.
|
2346
|
+
|
2347
|
+
### Parameters
|
2348
|
+
|
2349
|
+
Name | Type | Description | Notes
|
2350
|
+
------------- | ------------- | ------------- | -------------
|
2351
|
+
**name** | **String**| The document name. |
|
2352
|
+
**xml_file_path** | **String**| Full source filename (ex. /folder1/folder2/template.xml) |
|
2353
|
+
**storage** | **String**| The document storage. | [optional]
|
2354
|
+
**folder** | **String**| The document folder. | [optional]
|
2355
|
+
|
2356
|
+
### Return type
|
2357
|
+
|
2358
|
+
**File**
|
2359
|
+
|
2360
|
+
### HTTP request headers
|
2361
|
+
|
2362
|
+
- **Content-Type**: application/json
|
2363
|
+
- **Accept**: multipart/form-data
|
2364
|
+
|
2365
|
+
|
2366
|
+
|
2205
2367
|
# **get_ink_annotation**
|
2206
2368
|
> InkAnnotationResponse get_ink_annotation(name, annotation_id, opts)
|
2207
2369
|
|
@@ -4697,6 +4859,81 @@ Name | Type | Description | Notes
|
|
4697
4859
|
|
4698
4860
|
|
4699
4861
|
|
4862
|
+
# **post_import_fields_from_fdf**
|
4863
|
+
> AsposeResponse post_import_fields_from_fdf(name, opts)
|
4864
|
+
|
4865
|
+
Update fields from FDF file in request.
|
4866
|
+
|
4867
|
+
### Parameters
|
4868
|
+
|
4869
|
+
Name | Type | Description | Notes
|
4870
|
+
------------- | ------------- | ------------- | -------------
|
4871
|
+
**name** | **String**| The document name. |
|
4872
|
+
**storage** | **String**| The document storage. | [optional]
|
4873
|
+
**folder** | **String**| The document folder. | [optional]
|
4874
|
+
**fdf_data** | **File**| Fdf file. | [optional]
|
4875
|
+
|
4876
|
+
### Return type
|
4877
|
+
|
4878
|
+
[**AsposeResponse**](AsposeResponse.md)
|
4879
|
+
|
4880
|
+
### HTTP request headers
|
4881
|
+
|
4882
|
+
- **Content-Type**: multipart/form-data
|
4883
|
+
- **Accept**: application/json
|
4884
|
+
|
4885
|
+
|
4886
|
+
|
4887
|
+
# **post_import_fields_from_xfdf**
|
4888
|
+
> AsposeResponse post_import_fields_from_xfdf(name, opts)
|
4889
|
+
|
4890
|
+
Update fields from XFDF file in request.
|
4891
|
+
|
4892
|
+
### Parameters
|
4893
|
+
|
4894
|
+
Name | Type | Description | Notes
|
4895
|
+
------------- | ------------- | ------------- | -------------
|
4896
|
+
**name** | **String**| The document name. |
|
4897
|
+
**storage** | **String**| The document storage. | [optional]
|
4898
|
+
**folder** | **String**| The document folder. | [optional]
|
4899
|
+
**xfdf_data** | **File**| Xfdf file. | [optional]
|
4900
|
+
|
4901
|
+
### Return type
|
4902
|
+
|
4903
|
+
[**AsposeResponse**](AsposeResponse.md)
|
4904
|
+
|
4905
|
+
### HTTP request headers
|
4906
|
+
|
4907
|
+
- **Content-Type**: multipart/form-data
|
4908
|
+
- **Accept**: application/json
|
4909
|
+
|
4910
|
+
|
4911
|
+
|
4912
|
+
# **post_import_fields_from_xml**
|
4913
|
+
> AsposeResponse post_import_fields_from_xml(name, opts)
|
4914
|
+
|
4915
|
+
Update fields from XML file in request.
|
4916
|
+
|
4917
|
+
### Parameters
|
4918
|
+
|
4919
|
+
Name | Type | Description | Notes
|
4920
|
+
------------- | ------------- | ------------- | -------------
|
4921
|
+
**name** | **String**| The document name. |
|
4922
|
+
**storage** | **String**| The document storage. | [optional]
|
4923
|
+
**folder** | **String**| The document folder. | [optional]
|
4924
|
+
**xml_data** | **File**| Xml file. | [optional]
|
4925
|
+
|
4926
|
+
### Return type
|
4927
|
+
|
4928
|
+
[**AsposeResponse**](AsposeResponse.md)
|
4929
|
+
|
4930
|
+
### HTTP request headers
|
4931
|
+
|
4932
|
+
- **Content-Type**: multipart/form-data
|
4933
|
+
- **Accept**: application/json
|
4934
|
+
|
4935
|
+
|
4936
|
+
|
4700
4937
|
# **post_insert_image**
|
4701
4938
|
> AsposeResponse post_insert_image(name, page_number, llx, lly, urx, ury, opts)
|
4702
4939
|
|
@@ -5818,6 +6055,81 @@ Name | Type | Description | Notes
|
|
5818
6055
|
|
5819
6056
|
|
5820
6057
|
|
6058
|
+
# **put_export_fields_from_pdf_to_fdf_in_storage**
|
6059
|
+
> AsposeResponse put_export_fields_from_pdf_to_fdf_in_storage(name, fdf_output_file_path, opts)
|
6060
|
+
|
6061
|
+
Export fields from from PDF in storage to FDF file in storage.
|
6062
|
+
|
6063
|
+
### Parameters
|
6064
|
+
|
6065
|
+
Name | Type | Description | Notes
|
6066
|
+
------------- | ------------- | ------------- | -------------
|
6067
|
+
**name** | **String**| The document name. |
|
6068
|
+
**fdf_output_file_path** | **String**| The output Fdf file path. |
|
6069
|
+
**storage** | **String**| The document storage. | [optional]
|
6070
|
+
**folder** | **String**| The document folder. | [optional]
|
6071
|
+
|
6072
|
+
### Return type
|
6073
|
+
|
6074
|
+
[**AsposeResponse**](AsposeResponse.md)
|
6075
|
+
|
6076
|
+
### HTTP request headers
|
6077
|
+
|
6078
|
+
- **Content-Type**: application/json
|
6079
|
+
- **Accept**: application/json
|
6080
|
+
|
6081
|
+
|
6082
|
+
|
6083
|
+
# **put_export_fields_from_pdf_to_xfdf_in_storage**
|
6084
|
+
> AsposeResponse put_export_fields_from_pdf_to_xfdf_in_storage(name, xfdf_output_file_path, opts)
|
6085
|
+
|
6086
|
+
Export fields from from PDF in storage to XFDF file in storage.
|
6087
|
+
|
6088
|
+
### Parameters
|
6089
|
+
|
6090
|
+
Name | Type | Description | Notes
|
6091
|
+
------------- | ------------- | ------------- | -------------
|
6092
|
+
**name** | **String**| The document name. |
|
6093
|
+
**xfdf_output_file_path** | **String**| The output xfdf file path. |
|
6094
|
+
**storage** | **String**| The document storage. | [optional]
|
6095
|
+
**folder** | **String**| The document folder. | [optional]
|
6096
|
+
|
6097
|
+
### Return type
|
6098
|
+
|
6099
|
+
[**AsposeResponse**](AsposeResponse.md)
|
6100
|
+
|
6101
|
+
### HTTP request headers
|
6102
|
+
|
6103
|
+
- **Content-Type**: application/json
|
6104
|
+
- **Accept**: application/json
|
6105
|
+
|
6106
|
+
|
6107
|
+
|
6108
|
+
# **put_export_fields_from_pdf_to_xml_in_storage**
|
6109
|
+
> AsposeResponse put_export_fields_from_pdf_to_xml_in_storage(name, xml_output_file_path, opts)
|
6110
|
+
|
6111
|
+
Export fields from from PDF in storage to XML file in storage.
|
6112
|
+
|
6113
|
+
### Parameters
|
6114
|
+
|
6115
|
+
Name | Type | Description | Notes
|
6116
|
+
------------- | ------------- | ------------- | -------------
|
6117
|
+
**name** | **String**| The document name. |
|
6118
|
+
**xml_output_file_path** | **String**| The output xml file path. |
|
6119
|
+
**storage** | **String**| The document storage. | [optional]
|
6120
|
+
**folder** | **String**| The document folder. | [optional]
|
6121
|
+
|
6122
|
+
### Return type
|
6123
|
+
|
6124
|
+
[**AsposeResponse**](AsposeResponse.md)
|
6125
|
+
|
6126
|
+
### HTTP request headers
|
6127
|
+
|
6128
|
+
- **Content-Type**: application/json
|
6129
|
+
- **Accept**: application/json
|
6130
|
+
|
6131
|
+
|
6132
|
+
|
5821
6133
|
# **put_fields_flatten**
|
5822
6134
|
> AsposeResponse put_fields_flatten(name, opts)
|
5823
6135
|
|
@@ -6228,6 +6540,81 @@ Name | Type | Description | Notes
|
|
6228
6540
|
|
6229
6541
|
|
6230
6542
|
|
6543
|
+
# **put_import_fields_from_fdf_in_storage**
|
6544
|
+
> AsposeResponse put_import_fields_from_fdf_in_storage(name, fdf_file_path, opts)
|
6545
|
+
|
6546
|
+
Update fields from FDF file in storage.
|
6547
|
+
|
6548
|
+
### Parameters
|
6549
|
+
|
6550
|
+
Name | Type | Description | Notes
|
6551
|
+
------------- | ------------- | ------------- | -------------
|
6552
|
+
**name** | **String**| The document name. |
|
6553
|
+
**fdf_file_path** | **String**| The Fdf file path. |
|
6554
|
+
**storage** | **String**| The document storage. | [optional]
|
6555
|
+
**folder** | **String**| The document folder. | [optional]
|
6556
|
+
|
6557
|
+
### Return type
|
6558
|
+
|
6559
|
+
[**AsposeResponse**](AsposeResponse.md)
|
6560
|
+
|
6561
|
+
### HTTP request headers
|
6562
|
+
|
6563
|
+
- **Content-Type**: application/json
|
6564
|
+
- **Accept**: application/json
|
6565
|
+
|
6566
|
+
|
6567
|
+
|
6568
|
+
# **put_import_fields_from_xfdf_in_storage**
|
6569
|
+
> AsposeResponse put_import_fields_from_xfdf_in_storage(name, xfdf_file_path, opts)
|
6570
|
+
|
6571
|
+
Update fields from XFDF file in storage.
|
6572
|
+
|
6573
|
+
### Parameters
|
6574
|
+
|
6575
|
+
Name | Type | Description | Notes
|
6576
|
+
------------- | ------------- | ------------- | -------------
|
6577
|
+
**name** | **String**| The document name. |
|
6578
|
+
**xfdf_file_path** | **String**| The XFDF file path. |
|
6579
|
+
**storage** | **String**| The document storage. | [optional]
|
6580
|
+
**folder** | **String**| The document folder. | [optional]
|
6581
|
+
|
6582
|
+
### Return type
|
6583
|
+
|
6584
|
+
[**AsposeResponse**](AsposeResponse.md)
|
6585
|
+
|
6586
|
+
### HTTP request headers
|
6587
|
+
|
6588
|
+
- **Content-Type**: application/json
|
6589
|
+
- **Accept**: application/json
|
6590
|
+
|
6591
|
+
|
6592
|
+
|
6593
|
+
# **put_import_fields_from_xml_in_storage**
|
6594
|
+
> AsposeResponse put_import_fields_from_xml_in_storage(name, xml_file_path, opts)
|
6595
|
+
|
6596
|
+
Update fields from XML file in storage.
|
6597
|
+
|
6598
|
+
### Parameters
|
6599
|
+
|
6600
|
+
Name | Type | Description | Notes
|
6601
|
+
------------- | ------------- | ------------- | -------------
|
6602
|
+
**name** | **String**| The document name. |
|
6603
|
+
**xml_file_path** | **String**| Full source filename (ex. /folder1/folder2/template.xml) |
|
6604
|
+
**storage** | **String**| The document storage. | [optional]
|
6605
|
+
**folder** | **String**| The document folder. | [optional]
|
6606
|
+
|
6607
|
+
### Return type
|
6608
|
+
|
6609
|
+
[**AsposeResponse**](AsposeResponse.md)
|
6610
|
+
|
6611
|
+
### HTTP request headers
|
6612
|
+
|
6613
|
+
- **Content-Type**: application/json
|
6614
|
+
- **Accept**: application/json
|
6615
|
+
|
6616
|
+
|
6617
|
+
|
6231
6618
|
# **put_ink_annotation**
|
6232
6619
|
> InkAnnotationResponse put_ink_annotation(name, annotation_id, annotation, opts)
|
6233
6620
|
|