aspose_pdf_cloud 20.1.0 → 20.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +26 -13
  3. data/docs/ApiInfo.md +10 -0
  4. data/docs/Cell.md +3 -0
  5. data/docs/CheckBoxField.md +1 -0
  6. data/docs/ChoiceField.md +1 -0
  7. data/docs/ComboBoxField.md +1 -0
  8. data/docs/FormField.md +1 -0
  9. data/docs/ImageCompressionVersion.md +12 -0
  10. data/docs/ImageEncoding.md +13 -0
  11. data/docs/ImageFragment.md +15 -0
  12. data/docs/ListBoxField.md +1 -0
  13. data/docs/OptimizeOptions.md +13 -7
  14. data/docs/OutputFormat.md +11 -0
  15. data/docs/PdfAType.md +3 -2
  16. data/docs/PdfApi.md +223 -26
  17. data/docs/RadioButtonField.md +1 -0
  18. data/docs/RadioButtonOptionField.md +1 -0
  19. data/docs/SignatureField.md +1 -0
  20. data/docs/TextBoxField.md +1 -0
  21. data/lib/aspose_pdf_cloud.rb +5 -0
  22. data/lib/aspose_pdf_cloud/api/pdf_api.rb +635 -43
  23. data/lib/aspose_pdf_cloud/api_client.rb +1 -1
  24. data/lib/aspose_pdf_cloud/models/api_info.rb +209 -0
  25. data/lib/aspose_pdf_cloud/models/cell.rb +36 -4
  26. data/lib/aspose_pdf_cloud/models/check_box_field.rb +11 -1
  27. data/lib/aspose_pdf_cloud/models/choice_field.rb +11 -1
  28. data/lib/aspose_pdf_cloud/models/combo_box_field.rb +11 -1
  29. data/lib/aspose_pdf_cloud/models/form_field.rb +11 -1
  30. data/lib/aspose_pdf_cloud/models/image_compression_version.rb +45 -0
  31. data/lib/aspose_pdf_cloud/models/image_encoding.rb +46 -0
  32. data/lib/aspose_pdf_cloud/models/image_fragment.rb +283 -0
  33. data/lib/aspose_pdf_cloud/models/list_box_field.rb +11 -1
  34. data/lib/aspose_pdf_cloud/models/optimize_options.rb +60 -35
  35. data/lib/aspose_pdf_cloud/models/output_format.rb +44 -0
  36. data/lib/aspose_pdf_cloud/models/pdf_a_type.rb +1 -0
  37. data/lib/aspose_pdf_cloud/models/radio_button_field.rb +11 -1
  38. data/lib/aspose_pdf_cloud/models/radio_button_option_field.rb +11 -1
  39. data/lib/aspose_pdf_cloud/models/signature_field.rb +11 -1
  40. data/lib/aspose_pdf_cloud/models/text_box_field.rb +11 -1
  41. data/lib/aspose_pdf_cloud/version.rb +1 -1
  42. data/test/pdf_tests.rb +157 -96
  43. data/test_data/4pagesPdfA.pdf +0 -0
  44. metadata +13 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2cff3ea26d275e20541506fb7bbc9a5b09b65983f78deedb5075a0589313dfab
4
- data.tar.gz: e5f315a1e4cc4b784b0192af45a07609f8ae3547d7c5fb2f4a90dd899843cef9
3
+ metadata.gz: 7fe11a03deff92cabba5629c4679d229cf205ca25ebd340da53b88ba040bf025
4
+ data.tar.gz: d9b65a9ea9530d2f58b51fbdc636c686add0598ab549614e679051331505cfc4
5
5
  SHA512:
6
- metadata.gz: 2a42718f2b379366afd02eb01de6cd457adfa6ef8414294ac9a37945cbe6096fb999127e4034adcdcb6281472185aa438467bfb9865d84b94785cab5ad572f7e
7
- data.tar.gz: 11c0cf4b616c04f9869d8cfa93178c2cc6537282a9adea8d00ed0fab8b0d584855181818fe000d7d2cb799a61ee631d894a25e2dccd5abbbbe2db94ab476566a
6
+ metadata.gz: f8946aeb040eecde7bf069e9fe5a8b9cac94ea4f70184bd04bce148069faf09d7270462d26744ca12689dff8232cb5d864b3806bc992f08bce8e277903e445af
7
+ data.tar.gz: 73bb74cd04fc7301a92957ffa7dd39bfd7c7c588aea9e1f8a7d45a50c47a6cfb5f09fafb18d2990ef8b897114091069a55c44c651be2ad36f07035f91401b8d4
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Aspose.PDF Cloud
2
2
 
3
3
  - API version: 3.0
4
- - Package version: 20.1.0
4
+ - Package version: 20.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
 
@@ -24,15 +24,15 @@ gem build aspose_pdf_cloud.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./aspose_pdf_cloud-20.1.0.gem
27
+ gem install ./aspose_pdf_cloud-20.7.0.gem
28
28
  ```
29
- (for development, run `gem install --dev ./aspose_pdf_cloud-20.1.0.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./aspose_pdf_cloud-20.7.0.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'aspose_pdf_cloud', '~> 20.1.0'
35
+ gem 'aspose_pdf_cloud', '~> 20.7.0'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -116,6 +116,7 @@ Class | Method | HTTP request | Description
116
116
  *AsposePdfCloud::PdfApi* | [**delete_stamp**](docs/PdfApi.md#delete_stamp) | **DELETE** /pdf/\{name}/stamps/\{stampId} | Delete document stamp by ID
117
117
  *AsposePdfCloud::PdfApi* | [**delete_table**](docs/PdfApi.md#delete_table) | **DELETE** /pdf/\{name}/tables/\{tableId} | Delete document table by ID
118
118
  *AsposePdfCloud::PdfApi* | [**download_file**](docs/PdfApi.md#download_file) | **GET** /pdf/storage/file/\{path} | Download file
119
+ *AsposePdfCloud::PdfApi* | [**get_api_info**](docs/PdfApi.md#get_api_info) | **GET** /pdf/info |
119
120
  *AsposePdfCloud::PdfApi* | [**get_bookmark**](docs/PdfApi.md#get_bookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
120
121
  *AsposePdfCloud::PdfApi* | [**get_bookmarks**](docs/PdfApi.md#get_bookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
121
122
  *AsposePdfCloud::PdfApi* | [**get_caret_annotation**](docs/PdfApi.md#get_caret_annotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
@@ -124,7 +125,7 @@ Class | Method | HTTP request | Description
124
125
  *AsposePdfCloud::PdfApi* | [**get_combo_box_field**](docs/PdfApi.md#get_combo_box_field) | **GET** /pdf/\{name}/fields/combobox/\{fieldName} | Read document combobox field by name.
125
126
  *AsposePdfCloud::PdfApi* | [**get_disc_usage**](docs/PdfApi.md#get_disc_usage) | **GET** /pdf/storage/disc | Get disc usage
126
127
  *AsposePdfCloud::PdfApi* | [**get_document**](docs/PdfApi.md#get_document) | **GET** /pdf/\{name} | Read common document info.
127
- *AsposePdfCloud::PdfApi* | [**get_document_annotations**](docs/PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
128
+ *AsposePdfCloud::PdfApi* | [**get_document_annotations**](docs/PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
128
129
  *AsposePdfCloud::PdfApi* | [**get_document_attachment_by_index**](docs/PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
129
130
  *AsposePdfCloud::PdfApi* | [**get_document_attachments**](docs/PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
130
131
  *AsposePdfCloud::PdfApi* | [**get_document_bookmarks**](docs/PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks/tree | Read document bookmarks tree.
@@ -184,7 +185,7 @@ Class | Method | HTTP request | Description
184
185
  *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.
185
186
  *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.
186
187
  *AsposePdfCloud::PdfApi* | [**get_ink_annotation**](docs/PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
187
- *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.
188
+ *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 TeX file (located on storage) to PDF format and return resulting file in response.
188
189
  *AsposePdfCloud::PdfApi* | [**get_line_annotation**](docs/PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
189
190
  *AsposePdfCloud::PdfApi* | [**get_link_annotation**](docs/PdfApi.md#get_link_annotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
190
191
  *AsposePdfCloud::PdfApi* | [**get_list_box_field**](docs/PdfApi.md#get_list_box_field) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
@@ -232,14 +233,16 @@ Class | Method | HTTP request | Description
232
233
  *AsposePdfCloud::PdfApi* | [**get_page_underline_annotations**](docs/PdfApi.md#get_page_underline_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
233
234
  *AsposePdfCloud::PdfApi* | [**get_pages**](docs/PdfApi.md#get_pages) | **GET** /pdf/\{name}/pages | Read document pages info.
234
235
  *AsposePdfCloud::PdfApi* | [**get_pcl_in_storage_to_pdf**](docs/PdfApi.md#get_pcl_in_storage_to_pdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
236
+ *AsposePdfCloud::PdfApi* | [**get_pdf_a_in_storage_to_pdf**](docs/PdfApi.md#get_pdf_a_in_storage_to_pdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
235
237
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_doc**](docs/PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
236
238
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_epub**](docs/PdfApi.md#get_pdf_in_storage_to_epub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
237
239
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_html**](docs/PdfApi.md#get_pdf_in_storage_to_html) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
238
- *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to LaTeX format and returns resulting file in response content
240
+ *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
239
241
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_mobi_xml**](docs/PdfApi.md#get_pdf_in_storage_to_mobi_xml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting file in response content
240
242
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_pdf_a**](docs/PdfApi.md#get_pdf_in_storage_to_pdf_a) | **GET** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
241
243
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_pptx**](docs/PdfApi.md#get_pdf_in_storage_to_pptx) | **GET** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
242
244
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_svg**](docs/PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
245
+ *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_te_x**](docs/PdfApi.md#get_pdf_in_storage_to_te_x) | **GET** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
243
246
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_tiff**](docs/PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
244
247
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xls**](docs/PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
245
248
  *AsposePdfCloud::PdfApi* | [**get_pdf_in_storage_to_xlsx**](docs/PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
@@ -263,6 +266,7 @@ Class | Method | HTTP request | Description
263
266
  *AsposePdfCloud::PdfApi* | [**get_strike_out_annotation**](docs/PdfApi.md#get_strike_out_annotation) | **GET** /pdf/\{name}/annotations/strikeout/\{annotationId} | Read document page StrikeOut annotation by ID.
264
267
  *AsposePdfCloud::PdfApi* | [**get_svg_in_storage_to_pdf**](docs/PdfApi.md#get_svg_in_storage_to_pdf) | **GET** /pdf/create/svg | Convert SVG file (located on storage) to PDF format and return resulting file in response.
265
268
  *AsposePdfCloud::PdfApi* | [**get_table**](docs/PdfApi.md#get_table) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
269
+ *AsposePdfCloud::PdfApi* | [**get_te_x_in_storage_to_pdf**](docs/PdfApi.md#get_te_x_in_storage_to_pdf) | **GET** /pdf/create/tex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
266
270
  *AsposePdfCloud::PdfApi* | [**get_text**](docs/PdfApi.md#get_text) | **GET** /pdf/\{name}/text | Read document text.
267
271
  *AsposePdfCloud::PdfApi* | [**get_text_annotation**](docs/PdfApi.md#get_text_annotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
268
272
  *AsposePdfCloud::PdfApi* | [**get_text_box_field**](docs/PdfApi.md#get_text_box_field) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
@@ -270,7 +274,7 @@ Class | Method | HTTP request | Description
270
274
  *AsposePdfCloud::PdfApi* | [**get_verify_signature**](docs/PdfApi.md#get_verify_signature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
271
275
  *AsposePdfCloud::PdfApi* | [**get_web_in_storage_to_pdf**](docs/PdfApi.md#get_web_in_storage_to_pdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response.
272
276
  *AsposePdfCloud::PdfApi* | [**get_words_per_page**](docs/PdfApi.md#get_words_per_page) | **GET** /pdf/\{name}/pages/wordCount | Get number of words per document page.
273
- *AsposePdfCloud::PdfApi* | [**get_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contatins XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
277
+ *AsposePdfCloud::PdfApi* | [**get_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
274
278
  *AsposePdfCloud::PdfApi* | [**get_xml_in_storage_to_pdf**](docs/PdfApi.md#get_xml_in_storage_to_pdf) | **GET** /pdf/create/xml | Convert XML file (located on storage) to PDF format and return resulting file in response.
275
279
  *AsposePdfCloud::PdfApi* | [**get_xps_in_storage_to_pdf**](docs/PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response.
276
280
  *AsposePdfCloud::PdfApi* | [**get_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response.
@@ -369,7 +373,7 @@ Class | Method | HTTP request | Description
369
373
  *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.
370
374
  *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.
371
375
  *AsposePdfCloud::PdfApi* | [**put_ink_annotation**](docs/PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
372
- *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.
376
+ *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 TeX file (located on storage) to PDF format and upload resulting file to storage.
373
377
  *AsposePdfCloud::PdfApi* | [**put_line_annotation**](docs/PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
374
378
  *AsposePdfCloud::PdfApi* | [**put_link_annotation**](docs/PdfApi.md#put_link_annotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
375
379
  *AsposePdfCloud::PdfApi* | [**put_list_box_field**](docs/PdfApi.md#put_list_box_field) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
@@ -385,14 +389,16 @@ Class | Method | HTTP request | Description
385
389
  *AsposePdfCloud::PdfApi* | [**put_page_convert_to_png**](docs/PdfApi.md#put_page_convert_to_png) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/png | Convert document page to png image and upload resulting file to storage.
386
390
  *AsposePdfCloud::PdfApi* | [**put_page_convert_to_tiff**](docs/PdfApi.md#put_page_convert_to_tiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/tiff | Convert document page to Tiff image and upload resulting file to storage.
387
391
  *AsposePdfCloud::PdfApi* | [**put_pcl_in_storage_to_pdf**](docs/PdfApi.md#put_pcl_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/pcl | Convert PCL file (located on storage) to PDF format and upload resulting file to storage.
392
+ *AsposePdfCloud::PdfApi* | [**put_pdf_a_in_storage_to_pdf**](docs/PdfApi.md#put_pdf_a_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/pdfa | Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
388
393
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_doc**](docs/PdfApi.md#put_pdf_in_request_to_doc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
389
394
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_epub**](docs/PdfApi.md#put_pdf_in_request_to_epub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
390
395
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_html**](docs/PdfApi.md#put_pdf_in_request_to_html) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
391
- *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_la_te_x**](docs/PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to LaTeX format and uploads resulting file to storage.
396
+ *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_la_te_x**](docs/PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
392
397
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_mobi_xml**](docs/PdfApi.md#put_pdf_in_request_to_mobi_xml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting file to storage.
393
398
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_pdf_a**](docs/PdfApi.md#put_pdf_in_request_to_pdf_a) | **PUT** /pdf/convert/pdfa | Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
394
399
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_pptx**](docs/PdfApi.md#put_pdf_in_request_to_pptx) | **PUT** /pdf/convert/pptx | Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
395
400
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_svg**](docs/PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
401
+ *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_te_x**](docs/PdfApi.md#put_pdf_in_request_to_te_x) | **PUT** /pdf/convert/tex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
396
402
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_tiff**](docs/PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
397
403
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xls**](docs/PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
398
404
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_request_to_xlsx**](docs/PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
@@ -401,11 +407,12 @@ Class | Method | HTTP request | Description
401
407
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_doc**](docs/PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
402
408
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_epub**](docs/PdfApi.md#put_pdf_in_storage_to_epub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
403
409
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_html**](docs/PdfApi.md#put_pdf_in_storage_to_html) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
404
- *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to LaTeX format and uploads resulting file to storage
410
+ *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_la_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
405
411
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_mobi_xml**](docs/PdfApi.md#put_pdf_in_storage_to_mobi_xml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting file to storage
406
412
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_pdf_a**](docs/PdfApi.md#put_pdf_in_storage_to_pdf_a) | **PUT** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
407
413
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_pptx**](docs/PdfApi.md#put_pdf_in_storage_to_pptx) | **PUT** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
408
414
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_svg**](docs/PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
415
+ *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_te_x**](docs/PdfApi.md#put_pdf_in_storage_to_te_x) | **PUT** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
409
416
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_tiff**](docs/PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
410
417
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xls**](docs/PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
411
418
  *AsposePdfCloud::PdfApi* | [**put_pdf_in_storage_to_xlsx**](docs/PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
@@ -433,14 +440,15 @@ Class | Method | HTTP request | Description
433
440
  *AsposePdfCloud::PdfApi* | [**put_strike_out_annotation**](docs/PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
434
441
  *AsposePdfCloud::PdfApi* | [**put_svg_in_storage_to_pdf**](docs/PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
435
442
  *AsposePdfCloud::PdfApi* | [**put_table**](docs/PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
443
+ *AsposePdfCloud::PdfApi* | [**put_te_x_in_storage_to_pdf**](docs/PdfApi.md#put_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/tex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
436
444
  *AsposePdfCloud::PdfApi* | [**put_text_annotation**](docs/PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
437
445
  *AsposePdfCloud::PdfApi* | [**put_text_box_field**](docs/PdfApi.md#put_text_box_field) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
438
446
  *AsposePdfCloud::PdfApi* | [**put_underline_annotation**](docs/PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
439
447
  *AsposePdfCloud::PdfApi* | [**put_update_field**](docs/PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
440
448
  *AsposePdfCloud::PdfApi* | [**put_update_fields**](docs/PdfApi.md#put_update_fields) | **PUT** /pdf/\{name}/fields | Update fields.
441
449
  *AsposePdfCloud::PdfApi* | [**put_web_in_storage_to_pdf**](docs/PdfApi.md#put_web_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/web | Convert web page to PDF format and upload resulting file to storage.
442
- *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_request_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contatins XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
443
- *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contatins XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
450
+ *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_request_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
451
+ *AsposePdfCloud::PdfApi* | [**put_xfa_pdf_in_storage_to_acro_form**](docs/PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
444
452
  *AsposePdfCloud::PdfApi* | [**put_xml_in_storage_to_pdf**](docs/PdfApi.md#put_xml_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xml | Convert XML file (located on storage) to PDF format and upload resulting file to storage.
445
453
  *AsposePdfCloud::PdfApi* | [**put_xps_in_storage_to_pdf**](docs/PdfApi.md#put_xps_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xps | Convert XPS file (located on storage) to PDF format and upload resulting file to storage.
446
454
  *AsposePdfCloud::PdfApi* | [**put_xsl_fo_in_storage_to_pdf**](docs/PdfApi.md#put_xsl_fo_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xslfo | Convert XslFo file (located on storage) to PDF format and upload resulting file to storage.
@@ -454,6 +462,7 @@ Class | Method | HTTP request | Description
454
462
  - [AsposePdfCloud::AnnotationState](docs/AnnotationState.md)
455
463
  - [AsposePdfCloud::AnnotationType](docs/AnnotationType.md)
456
464
  - [AsposePdfCloud::AntialiasingProcessingType](docs/AntialiasingProcessingType.md)
465
+ - [AsposePdfCloud::ApiInfo](docs/ApiInfo.md)
457
466
  - [AsposePdfCloud::AsposeResponse](docs/AsposeResponse.md)
458
467
  - [AsposePdfCloud::Border](docs/Border.md)
459
468
  - [AsposePdfCloud::BorderCornerStyle](docs/BorderCornerStyle.md)
@@ -496,6 +505,9 @@ Class | Method | HTTP request | Description
496
505
  - [AsposePdfCloud::HorizontalAlignment](docs/HorizontalAlignment.md)
497
506
  - [AsposePdfCloud::HtmlDocumentType](docs/HtmlDocumentType.md)
498
507
  - [AsposePdfCloud::HtmlMarkupGenerationModes](docs/HtmlMarkupGenerationModes.md)
508
+ - [AsposePdfCloud::ImageCompressionVersion](docs/ImageCompressionVersion.md)
509
+ - [AsposePdfCloud::ImageEncoding](docs/ImageEncoding.md)
510
+ - [AsposePdfCloud::ImageFragment](docs/ImageFragment.md)
499
511
  - [AsposePdfCloud::ImageSrcType](docs/ImageSrcType.md)
500
512
  - [AsposePdfCloud::ImageTemplate](docs/ImageTemplate.md)
501
513
  - [AsposePdfCloud::ImageTemplatesRequest](docs/ImageTemplatesRequest.md)
@@ -513,6 +525,7 @@ Class | Method | HTTP request | Description
513
525
  - [AsposePdfCloud::ObjectExist](docs/ObjectExist.md)
514
526
  - [AsposePdfCloud::OptimizeOptions](docs/OptimizeOptions.md)
515
527
  - [AsposePdfCloud::Option](docs/Option.md)
528
+ - [AsposePdfCloud::OutputFormat](docs/OutputFormat.md)
516
529
  - [AsposePdfCloud::PageLayout](docs/PageLayout.md)
517
530
  - [AsposePdfCloud::PageMode](docs/PageMode.md)
518
531
  - [AsposePdfCloud::PageWordCount](docs/PageWordCount.md)
@@ -0,0 +1,10 @@
1
+ # AsposePdfCloud::ApiInfo
2
+ Represents response for ApiInfo DTO
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | Product name. | [optional]
8
+ **version** | **String** | API version. | [optional]
9
+
10
+
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
  **border** | [**BorderInfo**](BorderInfo.md) | Gets or sets the border. | [optional]
10
10
  **background_color** | [**Color**](Color.md) | Gets or sets the background color. | [optional]
11
11
  **background_image_file** | **String** | Gets or sets the background image file. | [optional]
12
+ **background_image_storage_file** | **String** | Gets or sets path of the background image file from storage. | [optional]
12
13
  **alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets the alignment. | [optional]
13
14
  **default_cell_text_state** | [**TextState**](TextState.md) | Gets or sets the default cell text state. | [optional]
14
15
  **paragraphs** | [**Array<TextRect>**](TextRect.md) | Gets or sets the cell's formatted text. | [optional]
@@ -17,5 +18,7 @@ Name | Type | Description | Notes
17
18
  **col_span** | **Integer** | Gets or sets the column span. | [optional]
18
19
  **row_span** | **Integer** | Gets or sets the row span. | [optional]
19
20
  **width** | **Float** | Gets or sets the column width. | [optional]
21
+ **html_fragment** | **String** | Gets or sets Html fragment. | [optional]
22
+ **images** | [**Array<ImageFragment>**](ImageFragment.md) | Gets or sets ImageFragment list. | [optional]
20
23
 
21
24
 
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **partial_name** | **String** | Field name. | [optional]
9
+ **full_name** | **String** | Full Field name. | [optional]
9
10
  **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
10
11
  **value** | **String** | Field value. | [optional]
11
12
  **page_index** | **Integer** | Page index. |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **partial_name** | **String** | Field name. | [optional]
9
+ **full_name** | **String** | Full Field name. | [optional]
9
10
  **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
10
11
  **value** | **String** | Field value. | [optional]
11
12
  **page_index** | **Integer** | Page index. |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **partial_name** | **String** | Field name. | [optional]
9
+ **full_name** | **String** | Full Field name. | [optional]
9
10
  **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
10
11
  **value** | **String** | Field value. | [optional]
11
12
  **page_index** | **Integer** | Page index. |
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **partial_name** | **String** | Field name. | [optional]
9
+ **full_name** | **String** | Full Field name. | [optional]
9
10
  **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
10
11
  **value** | **String** | Field value. | [optional]
11
12
  **page_index** | **Integer** | Page index. |
@@ -0,0 +1,12 @@
1
+ # AsposePdfCloud::ImageCompressionVersion
2
+ Describes versions of image compression algorithm.
3
+
4
+ ## Enum
5
+ Name | Type | Value | Description
6
+ ------------ | ------------- | ------------- | -------------
7
+ **STANDARD** | **String** | 'Standard' | Standard algorithm. Default value.
8
+ **FAST** | **String** | 'Fast' | Improved algorithm faster then standard but applicable not for all cases.
9
+ **MIXED** | **String** | 'Mixed' | Use fast algorithm when possible and standard for other cases. May be slower then "Fast" but may produce better compression.
10
+
11
+
12
+
@@ -0,0 +1,13 @@
1
+ # AsposePdfCloud::ImageEncoding
2
+ Image encoding type.
3
+
4
+ ## Enum
5
+ Name | Type | Value | Description
6
+ ------------ | ------------- | ------------- | -------------
7
+ **UNCHANGED** | **String** | 'Unchanged' | Don't change encoding.
8
+ **JPEG** | **String** | 'Jpeg' | JPEG (DCT) encoding.
9
+ **FLATE** | **String** | 'Flate' | Flate encoding.
10
+ **JPEG2000** | **String** | 'Jpeg2000' | JPEG2000 (JPX) encoding.
11
+
12
+
13
+
@@ -0,0 +1,15 @@
1
+ # AsposePdfCloud::ImageFragment
2
+ Represents Image Fragment DTO.
3
+
4
+ ## Properties
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **image_file** | **String** | Gets or sets full storage path of image. |
8
+ **fix_width** | **Float** | Gets or sets fix width of the image. | [optional]
9
+ **fix_height** | **Float** | Gets or sets fix height of the image. | [optional]
10
+ **horizontal_alignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets or sets horizontal alignment of the image. | [optional]
11
+ **vertical_alignment** | [**VerticalAlignment**](VerticalAlignment.md) | Gets or sets vertical alignment of the image. | [optional]
12
+ **image_scale** | **Float** | Gets or sets ImageScale of the image. | [optional]
13
+ **margin** | [**MarginInfo**](MarginInfo.md) | Gets or sets Margin of the image. | [optional]
14
+
15
+
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **links** | [**Array<Link>**](Link.md) | Link to the document. | [optional]
8
8
  **partial_name** | **String** | Field name. | [optional]
9
+ **full_name** | **String** | Full Field name. | [optional]
9
10
  **rect** | [**Rectangle**](Rectangle.md) | Field rectangle. | [optional]
10
11
  **value** | **String** | Field value. | [optional]
11
12
  **page_index** | **Integer** | Page index. |
@@ -4,12 +4,18 @@ Represents Pdf optimize options.
4
4
  ## Properties
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **allow_reuse_page_content** | **BOOLEAN** | If true page contents will be reused when document is optimized for equal pages. |
8
- **compress_images** | **BOOLEAN** | If this flag is set to true images will be compressed in the document. compression level is specfied with ImageQuality property. |
9
- **image_quality** | **Integer** | Specifie slevel of image compression when CompressIamges flag is used. |
10
- **link_duplcate_streams** | **BOOLEAN** | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thes streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenedted multiple times). |
11
- **remove_unused_objects** | **BOOLEAN** | If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document. |
12
- **remove_unused_streams** | **BOOLEAN** | If this flag set to true, every resource is checked on it's usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document. |
13
- **unembed_fonts** | **BOOLEAN** | Make fonts not embedded if set to true. |
7
+ **allow_reuse_page_content** | **BOOLEAN** | If true page contents will be reused when document is optimized for equal pages. | [optional]
8
+ **compress_images** | **BOOLEAN** | If this flag is set to true images will be compressed in the document. Compression level is specified with ImageQuality property. | [optional]
9
+ **image_quality** | **Integer** | Specifies level of image compression when CompressImages flag is used. | [optional]
10
+ **link_duplcate_streams** | **BOOLEAN** | If this flag is set to true, Resource streams will be analyzed. If duplicate streams are found (i.e. if stream contents is equal), then thees streams will be stored as one object. This allows to decrease document size in some cases (for example, when same document was concatenated multiple times). | [optional]
11
+ **remove_unused_objects** | **BOOLEAN** | If this flag is set to true, all document objects will be checked and unused objects (i.e. objects which does not have any reference) are removed from document. | [optional]
12
+ **remove_unused_streams** | **BOOLEAN** | If this flag set to true, every resource is checked on it's usage. If resource is never used, then resources is removed. This may decrease document size for example when pages were extracted from document. | [optional]
13
+ **unembed_fonts** | **BOOLEAN** | Make fonts not embedded if set to true. | [optional]
14
+ **resize_images** | **BOOLEAN** | If this flag set to true and CompressImages is true images will be resized if image resolution is greater then specified MaxResolution parameter. | [optional]
15
+ **max_resolution** | **Integer** | Specifies maximum resolution of images. If image has higher resolution it will be scaled. | [optional]
16
+ **subset_fonts** | **BOOLEAN** | Fonts will be converted into subsets if set to true. | [optional]
17
+ **remove_private_info** | **BOOLEAN** | Remove private information (page piece info). | [optional]
18
+ **image_encoding** | [**ImageEncoding**](ImageEncoding.md) | Image encode which will be used. | [optional]
19
+ **image_compression_version** | [**ImageCompressionVersion**](ImageCompressionVersion.md) | Version of compression algorithm. Possible values are: "Standard" - standard compression, "Fast" - fast (improved compression which is faster then standard but may be applicable not for all images), "Mixed" - mixed (standard compression is applied to images which can not be compressed by faster algorithm, this may give best compression but more slow then "Fast" algorithm. Version "Fast" is not applicable for resizing images (standard method will be used). Default is "Standard". | [optional]
14
20
 
15
21
 
@@ -0,0 +1,11 @@
1
+ # AsposePdfCloud::OutputFormat
2
+ Enumeration for output type format.
3
+
4
+ ## Enum
5
+ Name | Type | Value | Description
6
+ ------------ | ------------- | ------------- | -------------
7
+ **ZIP** | **String** | 'Zip' | Zip archive.
8
+ **FOLDER** | **String** | 'Folder' | Folder.
9
+
10
+
11
+
@@ -4,8 +4,9 @@ Allows to specify PdfA file format.
4
4
  ## Enum
5
5
  Name | Type | Value | Description
6
6
  ------------ | ------------- | ------------- | -------------
7
- **PDFA1_A** | **String** | 'PDFA1A' |
8
- **PDFA1_B** | **String** | 'PDFA1B' |
7
+ **PDFA1_A** | **String** | 'PDFA1A' | Pdf/A-1a format
8
+ **PDFA1_B** | **String** | 'PDFA1B' | Pdf/A-1b format
9
+ **PDFA3_A** | **String** | 'PDFA3A' | Pdf/A-3a format
9
10
 
10
11
 
11
12
 
@@ -29,6 +29,7 @@ Method | HTTP request | Description
29
29
  [**delete_stamp**](PdfApi.md#delete_stamp) | **DELETE** /pdf/\{name}/stamps/\{stampId} | Delete document stamp by ID
30
30
  [**delete_table**](PdfApi.md#delete_table) | **DELETE** /pdf/\{name}/tables/\{tableId} | Delete document table by ID
31
31
  [**download_file**](PdfApi.md#download_file) | **GET** /pdf/storage/file/\{path} | Download file
32
+ [**get_api_info**](PdfApi.md#get_api_info) | **GET** /pdf/info |
32
33
  [**get_bookmark**](PdfApi.md#get_bookmark) | **GET** /pdf/\{name}/bookmarks/bookmark/\{bookmarkPath} | Read document bookmark.
33
34
  [**get_bookmarks**](PdfApi.md#get_bookmarks) | **GET** /pdf/\{name}/bookmarks/list/\{bookmarkPath} | Read document bookmarks node list.
34
35
  [**get_caret_annotation**](PdfApi.md#get_caret_annotation) | **GET** /pdf/\{name}/annotations/caret/\{annotationId} | Read document page caret annotation by ID.
@@ -37,7 +38,7 @@ Method | HTTP request | Description
37
38
  [**get_combo_box_field**](PdfApi.md#get_combo_box_field) | **GET** /pdf/\{name}/fields/combobox/\{fieldName} | Read document combobox field by name.
38
39
  [**get_disc_usage**](PdfApi.md#get_disc_usage) | **GET** /pdf/storage/disc | Get disc usage
39
40
  [**get_document**](PdfApi.md#get_document) | **GET** /pdf/\{name} | Read common document info.
40
- [**get_document_annotations**](PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
41
+ [**get_document_annotations**](PdfApi.md#get_document_annotations) | **GET** /pdf/\{name}/annotations | Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
41
42
  [**get_document_attachment_by_index**](PdfApi.md#get_document_attachment_by_index) | **GET** /pdf/\{name}/attachments/\{attachmentIndex} | Read document attachment info by its index.
42
43
  [**get_document_attachments**](PdfApi.md#get_document_attachments) | **GET** /pdf/\{name}/attachments | Read document attachments info.
43
44
  [**get_document_bookmarks**](PdfApi.md#get_document_bookmarks) | **GET** /pdf/\{name}/bookmarks/tree | Read document bookmarks tree.
@@ -97,7 +98,7 @@ Method | HTTP request | Description
97
98
  [**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.
98
99
  [**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.
99
100
  [**get_ink_annotation**](PdfApi.md#get_ink_annotation) | **GET** /pdf/\{name}/annotations/ink/\{annotationId} | Read document page ink annotation by ID.
100
- [**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.
101
+ [**get_la_te_x_in_storage_to_pdf**](PdfApi.md#get_la_te_x_in_storage_to_pdf) | **GET** /pdf/create/latex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
101
102
  [**get_line_annotation**](PdfApi.md#get_line_annotation) | **GET** /pdf/\{name}/annotations/line/\{annotationId} | Read document page line annotation by ID.
102
103
  [**get_link_annotation**](PdfApi.md#get_link_annotation) | **GET** /pdf/\{name}/links/\{linkId} | Read document link annotation by ID.
103
104
  [**get_list_box_field**](PdfApi.md#get_list_box_field) | **GET** /pdf/\{name}/fields/listbox/\{fieldName} | Read document listbox field by name.
@@ -145,14 +146,16 @@ Method | HTTP request | Description
145
146
  [**get_page_underline_annotations**](PdfApi.md#get_page_underline_annotations) | **GET** /pdf/\{name}/pages/\{pageNumber}/annotations/underline | Read document page underline annotations.
146
147
  [**get_pages**](PdfApi.md#get_pages) | **GET** /pdf/\{name}/pages | Read document pages info.
147
148
  [**get_pcl_in_storage_to_pdf**](PdfApi.md#get_pcl_in_storage_to_pdf) | **GET** /pdf/create/pcl | Convert PCL file (located on storage) to PDF format and return resulting file in response.
149
+ [**get_pdf_a_in_storage_to_pdf**](PdfApi.md#get_pdf_a_in_storage_to_pdf) | **GET** /pdf/create/pdfa | Convert PDFA file (located on storage) to PDF format and return resulting file in response.
148
150
  [**get_pdf_in_storage_to_doc**](PdfApi.md#get_pdf_in_storage_to_doc) | **GET** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and returns resulting file in response content
149
151
  [**get_pdf_in_storage_to_epub**](PdfApi.md#get_pdf_in_storage_to_epub) | **GET** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and returns resulting file in response content
150
152
  [**get_pdf_in_storage_to_html**](PdfApi.md#get_pdf_in_storage_to_html) | **GET** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and returns resulting file in response content
151
- [**get_pdf_in_storage_to_la_te_x**](PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to LaTeX format and returns resulting file in response content
153
+ [**get_pdf_in_storage_to_la_te_x**](PdfApi.md#get_pdf_in_storage_to_la_te_x) | **GET** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
152
154
  [**get_pdf_in_storage_to_mobi_xml**](PdfApi.md#get_pdf_in_storage_to_mobi_xml) | **GET** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and returns resulting file in response content
153
155
  [**get_pdf_in_storage_to_pdf_a**](PdfApi.md#get_pdf_in_storage_to_pdf_a) | **GET** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and returns resulting file in response content
154
156
  [**get_pdf_in_storage_to_pptx**](PdfApi.md#get_pdf_in_storage_to_pptx) | **GET** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and returns resulting file in response content
155
157
  [**get_pdf_in_storage_to_svg**](PdfApi.md#get_pdf_in_storage_to_svg) | **GET** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and returns resulting file in response content
158
+ [**get_pdf_in_storage_to_te_x**](PdfApi.md#get_pdf_in_storage_to_te_x) | **GET** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and returns resulting file in response content
156
159
  [**get_pdf_in_storage_to_tiff**](PdfApi.md#get_pdf_in_storage_to_tiff) | **GET** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and returns resulting file in response content
157
160
  [**get_pdf_in_storage_to_xls**](PdfApi.md#get_pdf_in_storage_to_xls) | **GET** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and returns resulting file in response content
158
161
  [**get_pdf_in_storage_to_xlsx**](PdfApi.md#get_pdf_in_storage_to_xlsx) | **GET** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and returns resulting file in response content
@@ -176,6 +179,7 @@ Method | HTTP request | Description
176
179
  [**get_strike_out_annotation**](PdfApi.md#get_strike_out_annotation) | **GET** /pdf/\{name}/annotations/strikeout/\{annotationId} | Read document page StrikeOut annotation by ID.
177
180
  [**get_svg_in_storage_to_pdf**](PdfApi.md#get_svg_in_storage_to_pdf) | **GET** /pdf/create/svg | Convert SVG file (located on storage) to PDF format and return resulting file in response.
178
181
  [**get_table**](PdfApi.md#get_table) | **GET** /pdf/\{name}/tables/\{tableId} | Read document page table by ID.
182
+ [**get_te_x_in_storage_to_pdf**](PdfApi.md#get_te_x_in_storage_to_pdf) | **GET** /pdf/create/tex | Convert TeX file (located on storage) to PDF format and return resulting file in response.
179
183
  [**get_text**](PdfApi.md#get_text) | **GET** /pdf/\{name}/text | Read document text.
180
184
  [**get_text_annotation**](PdfApi.md#get_text_annotation) | **GET** /pdf/\{name}/annotations/text/\{annotationId} | Read document page text annotation by ID.
181
185
  [**get_text_box_field**](PdfApi.md#get_text_box_field) | **GET** /pdf/\{name}/fields/textbox/\{fieldName} | Read document text box field by name.
@@ -183,7 +187,7 @@ Method | HTTP request | Description
183
187
  [**get_verify_signature**](PdfApi.md#get_verify_signature) | **GET** /pdf/\{name}/verifySignature | Verify signature document.
184
188
  [**get_web_in_storage_to_pdf**](PdfApi.md#get_web_in_storage_to_pdf) | **GET** /pdf/create/web | Convert web page to PDF format and return resulting file in response.
185
189
  [**get_words_per_page**](PdfApi.md#get_words_per_page) | **GET** /pdf/\{name}/pages/wordCount | Get number of words per document page.
186
- [**get_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contatins XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
190
+ [**get_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#get_xfa_pdf_in_storage_to_acro_form) | **GET** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
187
191
  [**get_xml_in_storage_to_pdf**](PdfApi.md#get_xml_in_storage_to_pdf) | **GET** /pdf/create/xml | Convert XML file (located on storage) to PDF format and return resulting file in response.
188
192
  [**get_xps_in_storage_to_pdf**](PdfApi.md#get_xps_in_storage_to_pdf) | **GET** /pdf/create/xps | Convert XPS file (located on storage) to PDF format and return resulting file in response.
189
193
  [**get_xsl_fo_in_storage_to_pdf**](PdfApi.md#get_xsl_fo_in_storage_to_pdf) | **GET** /pdf/create/xslfo | Convert XslFo file (located on storage) to PDF format and return resulting file in response.
@@ -282,7 +286,7 @@ Method | HTTP request | Description
282
286
  [**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.
283
287
  [**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.
284
288
  [**put_ink_annotation**](PdfApi.md#put_ink_annotation) | **PUT** /pdf/\{name}/annotations/ink/\{annotationId} | Replace document ink annotation
285
- [**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.
289
+ [**put_la_te_x_in_storage_to_pdf**](PdfApi.md#put_la_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/latex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
286
290
  [**put_line_annotation**](PdfApi.md#put_line_annotation) | **PUT** /pdf/\{name}/annotations/line/\{annotationId} | Replace document line annotation
287
291
  [**put_link_annotation**](PdfApi.md#put_link_annotation) | **PUT** /pdf/\{name}/links/\{linkId} | Replace document page link annotations
288
292
  [**put_list_box_field**](PdfApi.md#put_list_box_field) | **PUT** /pdf/\{name}/fields/listbox/\{fieldName} | Replace document listbox field
@@ -298,14 +302,16 @@ Method | HTTP request | Description
298
302
  [**put_page_convert_to_png**](PdfApi.md#put_page_convert_to_png) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/png | Convert document page to png image and upload resulting file to storage.
299
303
  [**put_page_convert_to_tiff**](PdfApi.md#put_page_convert_to_tiff) | **PUT** /pdf/\{name}/pages/\{pageNumber}/convert/tiff | Convert document page to Tiff image and upload resulting file to storage.
300
304
  [**put_pcl_in_storage_to_pdf**](PdfApi.md#put_pcl_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/pcl | Convert PCL file (located on storage) to PDF format and upload resulting file to storage.
305
+ [**put_pdf_a_in_storage_to_pdf**](PdfApi.md#put_pdf_a_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/pdfa | Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
301
306
  [**put_pdf_in_request_to_doc**](PdfApi.md#put_pdf_in_request_to_doc) | **PUT** /pdf/convert/doc | Converts PDF document (in request content) to DOC format and uploads resulting file to storage.
302
307
  [**put_pdf_in_request_to_epub**](PdfApi.md#put_pdf_in_request_to_epub) | **PUT** /pdf/convert/epub | Converts PDF document (in request content) to EPUB format and uploads resulting file to storage.
303
308
  [**put_pdf_in_request_to_html**](PdfApi.md#put_pdf_in_request_to_html) | **PUT** /pdf/convert/html | Converts PDF document (in request content) to Html format and uploads resulting file to storage.
304
- [**put_pdf_in_request_to_la_te_x**](PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to LaTeX format and uploads resulting file to storage.
309
+ [**put_pdf_in_request_to_la_te_x**](PdfApi.md#put_pdf_in_request_to_la_te_x) | **PUT** /pdf/convert/latex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
305
310
  [**put_pdf_in_request_to_mobi_xml**](PdfApi.md#put_pdf_in_request_to_mobi_xml) | **PUT** /pdf/convert/mobixml | Converts PDF document (in request content) to MOBIXML format and uploads resulting file to storage.
306
311
  [**put_pdf_in_request_to_pdf_a**](PdfApi.md#put_pdf_in_request_to_pdf_a) | **PUT** /pdf/convert/pdfa | Converts PDF document (in request content) to PdfA format and uploads resulting file to storage.
307
312
  [**put_pdf_in_request_to_pptx**](PdfApi.md#put_pdf_in_request_to_pptx) | **PUT** /pdf/convert/pptx | Converts PDF document (in request content) to PPTX format and uploads resulting file to storage.
308
313
  [**put_pdf_in_request_to_svg**](PdfApi.md#put_pdf_in_request_to_svg) | **PUT** /pdf/convert/svg | Converts PDF document (in request content) to SVG format and uploads resulting file to storage.
314
+ [**put_pdf_in_request_to_te_x**](PdfApi.md#put_pdf_in_request_to_te_x) | **PUT** /pdf/convert/tex | Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
309
315
  [**put_pdf_in_request_to_tiff**](PdfApi.md#put_pdf_in_request_to_tiff) | **PUT** /pdf/convert/tiff | Converts PDF document (in request content) to TIFF format and uploads resulting file to storage.
310
316
  [**put_pdf_in_request_to_xls**](PdfApi.md#put_pdf_in_request_to_xls) | **PUT** /pdf/convert/xls | Converts PDF document (in request content) to XLS format and uploads resulting file to storage.
311
317
  [**put_pdf_in_request_to_xlsx**](PdfApi.md#put_pdf_in_request_to_xlsx) | **PUT** /pdf/convert/xlsx | Converts PDF document (in request content) to XLSX format and uploads resulting file to storage.
@@ -314,11 +320,12 @@ Method | HTTP request | Description
314
320
  [**put_pdf_in_storage_to_doc**](PdfApi.md#put_pdf_in_storage_to_doc) | **PUT** /pdf/\{name}/convert/doc | Converts PDF document (located on storage) to DOC format and uploads resulting file to storage
315
321
  [**put_pdf_in_storage_to_epub**](PdfApi.md#put_pdf_in_storage_to_epub) | **PUT** /pdf/\{name}/convert/epub | Converts PDF document (located on storage) to EPUB format and uploads resulting file to storage
316
322
  [**put_pdf_in_storage_to_html**](PdfApi.md#put_pdf_in_storage_to_html) | **PUT** /pdf/\{name}/convert/html | Converts PDF document (located on storage) to Html format and uploads resulting file to storage
317
- [**put_pdf_in_storage_to_la_te_x**](PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to LaTeX format and uploads resulting file to storage
323
+ [**put_pdf_in_storage_to_la_te_x**](PdfApi.md#put_pdf_in_storage_to_la_te_x) | **PUT** /pdf/\{name}/convert/latex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
318
324
  [**put_pdf_in_storage_to_mobi_xml**](PdfApi.md#put_pdf_in_storage_to_mobi_xml) | **PUT** /pdf/\{name}/convert/mobixml | Converts PDF document (located on storage) to MOBIXML format and uploads resulting file to storage
319
325
  [**put_pdf_in_storage_to_pdf_a**](PdfApi.md#put_pdf_in_storage_to_pdf_a) | **PUT** /pdf/\{name}/convert/pdfa | Converts PDF document (located on storage) to PdfA format and uploads resulting file to storage
320
326
  [**put_pdf_in_storage_to_pptx**](PdfApi.md#put_pdf_in_storage_to_pptx) | **PUT** /pdf/\{name}/convert/pptx | Converts PDF document (located on storage) to PPTX format and uploads resulting file to storage
321
327
  [**put_pdf_in_storage_to_svg**](PdfApi.md#put_pdf_in_storage_to_svg) | **PUT** /pdf/\{name}/convert/svg | Converts PDF document (located on storage) to SVG format and uploads resulting file to storage
328
+ [**put_pdf_in_storage_to_te_x**](PdfApi.md#put_pdf_in_storage_to_te_x) | **PUT** /pdf/\{name}/convert/tex | Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
322
329
  [**put_pdf_in_storage_to_tiff**](PdfApi.md#put_pdf_in_storage_to_tiff) | **PUT** /pdf/\{name}/convert/tiff | Converts PDF document (located on storage) to TIFF format and uploads resulting file to storage
323
330
  [**put_pdf_in_storage_to_xls**](PdfApi.md#put_pdf_in_storage_to_xls) | **PUT** /pdf/\{name}/convert/xls | Converts PDF document (located on storage) to XLS format and uploads resulting file to storage
324
331
  [**put_pdf_in_storage_to_xlsx**](PdfApi.md#put_pdf_in_storage_to_xlsx) | **PUT** /pdf/\{name}/convert/xlsx | Converts PDF document (located on storage) to XLSX format and uploads resulting file to storage
@@ -346,14 +353,15 @@ Method | HTTP request | Description
346
353
  [**put_strike_out_annotation**](PdfApi.md#put_strike_out_annotation) | **PUT** /pdf/\{name}/annotations/strikeout/\{annotationId} | Replace document StrikeOut annotation
347
354
  [**put_svg_in_storage_to_pdf**](PdfApi.md#put_svg_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/svg | Convert SVG file (located on storage) to PDF format and upload resulting file to storage.
348
355
  [**put_table**](PdfApi.md#put_table) | **PUT** /pdf/\{name}/tables/\{tableId} | Replace document page table.
356
+ [**put_te_x_in_storage_to_pdf**](PdfApi.md#put_te_x_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/tex | Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
349
357
  [**put_text_annotation**](PdfApi.md#put_text_annotation) | **PUT** /pdf/\{name}/annotations/text/\{annotationId} | Replace document text annotation
350
358
  [**put_text_box_field**](PdfApi.md#put_text_box_field) | **PUT** /pdf/\{name}/fields/textbox/\{fieldName} | Replace document text box field
351
359
  [**put_underline_annotation**](PdfApi.md#put_underline_annotation) | **PUT** /pdf/\{name}/annotations/underline/\{annotationId} | Replace document underline annotation
352
360
  [**put_update_field**](PdfApi.md#put_update_field) | **PUT** /pdf/\{name}/fields/\{fieldName} | Update field.
353
361
  [**put_update_fields**](PdfApi.md#put_update_fields) | **PUT** /pdf/\{name}/fields | Update fields.
354
362
  [**put_web_in_storage_to_pdf**](PdfApi.md#put_web_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/web | Convert web page to PDF format and upload resulting file to storage.
355
- [**put_xfa_pdf_in_request_to_acro_form**](PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contatins XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
356
- [**put_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contatins XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
363
+ [**put_xfa_pdf_in_request_to_acro_form**](PdfApi.md#put_xfa_pdf_in_request_to_acro_form) | **PUT** /pdf/convert/xfatoacroform | Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
364
+ [**put_xfa_pdf_in_storage_to_acro_form**](PdfApi.md#put_xfa_pdf_in_storage_to_acro_form) | **PUT** /pdf/\{name}/convert/xfatoacroform | Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
357
365
  [**put_xml_in_storage_to_pdf**](PdfApi.md#put_xml_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xml | Convert XML file (located on storage) to PDF format and upload resulting file to storage.
358
366
  [**put_xps_in_storage_to_pdf**](PdfApi.md#put_xps_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xps | Convert XPS file (located on storage) to PDF format and upload resulting file to storage.
359
367
  [**put_xsl_fo_in_storage_to_pdf**](PdfApi.md#put_xsl_fo_in_storage_to_pdf) | **PUT** /pdf/\{name}/create/xslfo | Convert XslFo file (located on storage) to PDF format and upload resulting file to storage.
@@ -976,6 +984,25 @@ Name | Type | Description | Notes
976
984
 
977
985
 
978
986
 
987
+ # **get_api_info**
988
+ > ApiInfo get_api_info
989
+
990
+
991
+
992
+ ### Parameters
993
+ This endpoint does not need any parameter.
994
+
995
+ ### Return type
996
+
997
+ [**ApiInfo**](ApiInfo.md)
998
+
999
+ ### HTTP request headers
1000
+
1001
+ - **Content-Type**: application/json
1002
+ - **Accept**: application/json
1003
+
1004
+
1005
+
979
1006
  # **get_bookmark**
980
1007
  > BookmarkResponse get_bookmark(name, bookmark_path, opts)
981
1008
 
@@ -1175,7 +1202,7 @@ Name | Type | Description | Notes
1175
1202
  # **get_document_annotations**
1176
1203
  > AnnotationsInfoResponse get_document_annotations(name, opts)
1177
1204
 
1178
- Read documant page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
1205
+ Read document page annotations. Returns only FreeTextAnnotations, TextAnnotations, other annotations will implemented next releases.
1179
1206
 
1180
1207
  ### Parameters
1181
1208
 
@@ -2646,7 +2673,7 @@ Name | Type | Description | Notes
2646
2673
  # **get_la_te_x_in_storage_to_pdf**
2647
2674
  > File get_la_te_x_in_storage_to_pdf(src_path, opts)
2648
2675
 
2649
- Convert LaTeX file (located on storage) to PDF format and return resulting file in response.
2676
+ Convert TeX file (located on storage) to PDF format and return resulting file in response.
2650
2677
 
2651
2678
  ### Parameters
2652
2679
 
@@ -3854,6 +3881,30 @@ Name | Type | Description | Notes
3854
3881
 
3855
3882
 
3856
3883
 
3884
+ # **get_pdf_a_in_storage_to_pdf**
3885
+ > File get_pdf_a_in_storage_to_pdf(src_path, opts)
3886
+
3887
+ Convert PDFA file (located on storage) to PDF format and return resulting file in response.
3888
+
3889
+ ### Parameters
3890
+
3891
+ Name | Type | Description | Notes
3892
+ ------------- | ------------- | ------------- | -------------
3893
+ **src_path** | **String**| Full source filename (ex. /folder1/folder2/template.pdf) |
3894
+ **dont_optimize** | **BOOLEAN**| If set, document resources will not be optimized. | [optional]
3895
+ **storage** | **String**| The document storage. | [optional]
3896
+
3897
+ ### Return type
3898
+
3899
+ **File**
3900
+
3901
+ ### HTTP request headers
3902
+
3903
+ - **Content-Type**: application/json
3904
+ - **Accept**: multipart/form-data
3905
+
3906
+
3907
+
3857
3908
  # **get_pdf_in_storage_to_doc**
3858
3909
  > File get_pdf_in_storage_to_doc(name, opts)
3859
3910
 
@@ -3967,14 +4018,13 @@ Name | Type | Description | Notes
3967
4018
  # **get_pdf_in_storage_to_la_te_x**
3968
4019
  > File get_pdf_in_storage_to_la_te_x(name, opts)
3969
4020
 
3970
- Converts PDF document (located on storage) to LaTeX format and returns resulting file in response content
4021
+ Converts PDF document (located on storage) to TeX format and returns resulting file in response content
3971
4022
 
3972
4023
  ### Parameters
3973
4024
 
3974
4025
  Name | Type | Description | Notes
3975
4026
  ------------- | ------------- | ------------- | -------------
3976
4027
  **name** | **String**| The document name. |
3977
- **pages_count** | **Integer**| Pages count. | [optional]
3978
4028
  **folder** | **String**| The document folder. | [optional]
3979
4029
  **storage** | **String**| The document storage. | [optional]
3980
4030
 
@@ -4089,6 +4139,30 @@ Name | Type | Description | Notes
4089
4139
 
4090
4140
 
4091
4141
 
4142
+ # **get_pdf_in_storage_to_te_x**
4143
+ > File get_pdf_in_storage_to_te_x(name, opts)
4144
+
4145
+ Converts PDF document (located on storage) to TeX format and returns resulting file in response content
4146
+
4147
+ ### Parameters
4148
+
4149
+ Name | Type | Description | Notes
4150
+ ------------- | ------------- | ------------- | -------------
4151
+ **name** | **String**| The document name. |
4152
+ **folder** | **String**| The document folder. | [optional]
4153
+ **storage** | **String**| The document storage. | [optional]
4154
+
4155
+ ### Return type
4156
+
4157
+ **File**
4158
+
4159
+ ### HTTP request headers
4160
+
4161
+ - **Content-Type**: application/json
4162
+ - **Accept**: multipart/form-data
4163
+
4164
+
4165
+
4092
4166
  # **get_pdf_in_storage_to_tiff**
4093
4167
  > File get_pdf_in_storage_to_tiff(name, opts)
4094
4168
 
@@ -4686,6 +4760,29 @@ Name | Type | Description | Notes
4686
4760
 
4687
4761
 
4688
4762
 
4763
+ # **get_te_x_in_storage_to_pdf**
4764
+ > File get_te_x_in_storage_to_pdf(src_path, opts)
4765
+
4766
+ Convert TeX file (located on storage) to PDF format and return resulting file in response.
4767
+
4768
+ ### Parameters
4769
+
4770
+ Name | Type | Description | Notes
4771
+ ------------- | ------------- | ------------- | -------------
4772
+ **src_path** | **String**| Full source filename (ex. /folder1/folder2/template.tex) |
4773
+ **storage** | **String**| The document storage. | [optional]
4774
+
4775
+ ### Return type
4776
+
4777
+ **File**
4778
+
4779
+ ### HTTP request headers
4780
+
4781
+ - **Content-Type**: application/json
4782
+ - **Accept**: multipart/form-data
4783
+
4784
+
4785
+
4689
4786
  # **get_text**
4690
4787
  > TextRectsResponse get_text(name, llx, lly, urx, ury, opts)
4691
4788
 
@@ -4874,7 +4971,7 @@ Name | Type | Description | Notes
4874
4971
  # **get_xfa_pdf_in_storage_to_acro_form**
4875
4972
  > File get_xfa_pdf_in_storage_to_acro_form(name, opts)
4876
4973
 
4877
- Converts PDF document which contatins XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
4974
+ Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and returns resulting file response content
4878
4975
 
4879
4976
  ### Parameters
4880
4977
 
@@ -5077,7 +5174,7 @@ Add document bookmarks.
5077
5174
  Name | Type | Description | Notes
5078
5175
  ------------- | ------------- | ------------- | -------------
5079
5176
  **name** | **String**| The document name. |
5080
- **bookmark_path** | **String**| The bookmark path. |
5177
+ **bookmark_path** | **String**| The parent bookmark path. Specify an empty string when adding a bookmark to the root. |
5081
5178
  **bookmarks** | [**Array<Bookmark>**](Bookmark.md)| The array of bookmark. |
5082
5179
  **folder** | **String**| The document folder. | [optional]
5083
5180
  **storage** | **String**| The document storage. | [optional]
@@ -5890,7 +5987,7 @@ Name | Type | Description | Notes
5890
5987
  ------------- | ------------- | ------------- | -------------
5891
5988
  **name** | **String**| The document name. |
5892
5989
  **page_number** | **Integer**| The page number. |
5893
- **links** | [**Array<LinkAnnotation>**](LinkAnnotation.md)| Array of link anotation. |
5990
+ **links** | [**Array<LinkAnnotation>**](LinkAnnotation.md)| Array of link annotation. |
5894
5991
  **storage** | **String**| The document storage. | [optional]
5895
5992
  **folder** | **String**| The document folder. | [optional]
5896
5993
 
@@ -6770,7 +6867,7 @@ Name | Type | Description | Notes
6770
6867
  **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.doc) |
6771
6868
  **password** | **String**| The password (encrypted Base64). |
6772
6869
  **storage** | **String**| The document storage. | [optional]
6773
- **file** | **File**| A file to be derypted. | [optional]
6870
+ **file** | **File**| A file to be decrypted. | [optional]
6774
6871
 
6775
6872
  ### Return type
6776
6873
 
@@ -7451,7 +7548,7 @@ Name | Type | Description | Notes
7451
7548
  # **put_la_te_x_in_storage_to_pdf**
7452
7549
  > AsposeResponse put_la_te_x_in_storage_to_pdf(name, src_path, opts)
7453
7550
 
7454
- Convert LaTeX file (located on storage) to PDF format and upload resulting file to storage.
7551
+ Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
7455
7552
 
7456
7553
  ### Parameters
7457
7554
 
@@ -7510,7 +7607,7 @@ Name | Type | Description | Notes
7510
7607
  ------------- | ------------- | ------------- | -------------
7511
7608
  **name** | **String**| The document name. |
7512
7609
  **link_id** | **String**| The link ID. |
7513
- **link** | [**LinkAnnotation**](LinkAnnotation.md)| Link anotation. |
7610
+ **link** | [**LinkAnnotation**](LinkAnnotation.md)| Link annotation. |
7514
7611
  **storage** | **String**| The document storage. | [optional]
7515
7612
  **folder** | **String**| The document folder. | [optional]
7516
7613
 
@@ -7585,7 +7682,7 @@ Merge a list of documents.
7585
7682
 
7586
7683
  Name | Type | Description | Notes
7587
7684
  ------------- | ------------- | ------------- | -------------
7588
- **name** | **String**| Resulting documen name. |
7685
+ **name** | **String**| Resulting document name. |
7589
7686
  **merge_documents** | [**MergeDocuments**](MergeDocuments.md)| MergeDocuments with a list of documents. |
7590
7687
  **storage** | **String**| Resulting document storage. | [optional]
7591
7688
  **folder** | **String**| Resulting document folder. | [optional]
@@ -7871,6 +7968,32 @@ Name | Type | Description | Notes
7871
7968
 
7872
7969
 
7873
7970
 
7971
+ # **put_pdf_a_in_storage_to_pdf**
7972
+ > AsposeResponse put_pdf_a_in_storage_to_pdf(name, src_path, opts)
7973
+
7974
+ Convert PDFA file (located on storage) to PDF format and upload resulting file to storage.
7975
+
7976
+ ### Parameters
7977
+
7978
+ Name | Type | Description | Notes
7979
+ ------------- | ------------- | ------------- | -------------
7980
+ **name** | **String**| The document name. |
7981
+ **src_path** | **String**| Full source filename (ex. /folder1/folder2/template.pdf) |
7982
+ **dst_folder** | **String**| The destination document folder. | [optional]
7983
+ **dont_optimize** | **BOOLEAN**| If set, document resources will not be optimized. | [optional]
7984
+ **storage** | **String**| The document storage. | [optional]
7985
+
7986
+ ### Return type
7987
+
7988
+ [**AsposeResponse**](AsposeResponse.md)
7989
+
7990
+ ### HTTP request headers
7991
+
7992
+ - **Content-Type**: application/json
7993
+ - **Accept**: application/json
7994
+
7995
+
7996
+
7874
7997
  # **put_pdf_in_request_to_doc**
7875
7998
  > AsposeResponse put_pdf_in_request_to_doc(out_path, opts)
7876
7999
 
@@ -7968,6 +8091,7 @@ Name | Type | Description | Notes
7968
8091
  **try_save_text_underlining_and_strikeouting_in_css** | **BOOLEAN**| PDF itself does not contain underlining markers for texts. It emulated with line situated under text. This option allows converter try guess that this or that line is a text's underlining and put this info into CSS instead of drawing of underlining graphically. | [optional]
7969
8092
  **storage** | **String**| The document storage. | [optional]
7970
8093
  **flow_layout_paragraph_full_width** | **BOOLEAN**| This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | [optional]
8094
+ **output_format** | **String**| This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is "Zip" or missed (default). In case of the "Folder", all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional] [default to Zip]
7971
8095
  **file** | **File**| A file to be converted. | [optional]
7972
8096
 
7973
8097
  ### Return type
@@ -7984,14 +8108,13 @@ Name | Type | Description | Notes
7984
8108
  # **put_pdf_in_request_to_la_te_x**
7985
8109
  > AsposeResponse put_pdf_in_request_to_la_te_x(out_path, opts)
7986
8110
 
7987
- Converts PDF document (in request content) to LaTeX format and uploads resulting file to storage.
8111
+ Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
7988
8112
 
7989
8113
  ### Parameters
7990
8114
 
7991
8115
  Name | Type | Description | Notes
7992
8116
  ------------- | ------------- | ------------- | -------------
7993
8117
  **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
7994
- **pages_count** | **Integer**| Pages count. | [optional]
7995
8118
  **storage** | **String**| The document storage. | [optional]
7996
8119
  **file** | **File**| A file to be converted. | [optional]
7997
8120
 
@@ -8105,6 +8228,30 @@ Name | Type | Description | Notes
8105
8228
 
8106
8229
 
8107
8230
 
8231
+ # **put_pdf_in_request_to_te_x**
8232
+ > AsposeResponse put_pdf_in_request_to_te_x(out_path, opts)
8233
+
8234
+ Converts PDF document (in request content) to TeX format and uploads resulting file to storage.
8235
+
8236
+ ### Parameters
8237
+
8238
+ Name | Type | Description | Notes
8239
+ ------------- | ------------- | ------------- | -------------
8240
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
8241
+ **storage** | **String**| The document storage. | [optional]
8242
+ **file** | **File**| A file to be converted. | [optional]
8243
+
8244
+ ### Return type
8245
+
8246
+ [**AsposeResponse**](AsposeResponse.md)
8247
+
8248
+ ### HTTP request headers
8249
+
8250
+ - **Content-Type**: multipart/form-data
8251
+ - **Accept**: application/json
8252
+
8253
+
8254
+
8108
8255
  # **put_pdf_in_request_to_tiff**
8109
8256
  > AsposeResponse put_pdf_in_request_to_tiff(out_path, opts)
8110
8257
 
@@ -8349,6 +8496,7 @@ Name | Type | Description | Notes
8349
8496
  **folder** | **String**| The document folder. | [optional]
8350
8497
  **storage** | **String**| The document storage. | [optional]
8351
8498
  **flow_layout_paragraph_full_width** | **BOOLEAN**| This attribute specifies full width paragraph text for Flow mode, FixedLayout = false. | [optional]
8499
+ **output_format** | **String**| This parameter determines the type of result. The zip archive will be uploaded into the storage if the parameter is "Zip" or missed (default). In case of the "Folder", all resulting files and directories will be uploaded to the folder of the resulting HTML file. | [optional] [default to Zip]
8352
8500
 
8353
8501
  ### Return type
8354
8502
 
@@ -8364,7 +8512,7 @@ Name | Type | Description | Notes
8364
8512
  # **put_pdf_in_storage_to_la_te_x**
8365
8513
  > AsposeResponse put_pdf_in_storage_to_la_te_x(name, out_path, opts)
8366
8514
 
8367
- Converts PDF document (located on storage) to LaTeX format and uploads resulting file to storage
8515
+ Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
8368
8516
 
8369
8517
  ### Parameters
8370
8518
 
@@ -8372,7 +8520,6 @@ Name | Type | Description | Notes
8372
8520
  ------------- | ------------- | ------------- | -------------
8373
8521
  **name** | **String**| The document name. |
8374
8522
  **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
8375
- **pages_count** | **Integer**| Pages count. | [optional]
8376
8523
  **folder** | **String**| The document folder. | [optional]
8377
8524
  **storage** | **String**| The document storage. | [optional]
8378
8525
 
@@ -8490,6 +8637,31 @@ Name | Type | Description | Notes
8490
8637
 
8491
8638
 
8492
8639
 
8640
+ # **put_pdf_in_storage_to_te_x**
8641
+ > AsposeResponse put_pdf_in_storage_to_te_x(name, out_path, opts)
8642
+
8643
+ Converts PDF document (located on storage) to TeX format and uploads resulting file to storage
8644
+
8645
+ ### Parameters
8646
+
8647
+ Name | Type | Description | Notes
8648
+ ------------- | ------------- | ------------- | -------------
8649
+ **name** | **String**| The document name. |
8650
+ **out_path** | **String**| Full resulting filename (ex. /folder1/folder2/result.tex) |
8651
+ **folder** | **String**| The document folder. | [optional]
8652
+ **storage** | **String**| The document storage. | [optional]
8653
+
8654
+ ### Return type
8655
+
8656
+ [**AsposeResponse**](AsposeResponse.md)
8657
+
8658
+ ### HTTP request headers
8659
+
8660
+ - **Content-Type**: application/json
8661
+ - **Accept**: application/json
8662
+
8663
+
8664
+
8493
8665
  # **put_pdf_in_storage_to_tiff**
8494
8666
  > AsposeResponse put_pdf_in_storage_to_tiff(name, out_path, opts)
8495
8667
 
@@ -9215,6 +9387,31 @@ Name | Type | Description | Notes
9215
9387
 
9216
9388
 
9217
9389
 
9390
+ # **put_te_x_in_storage_to_pdf**
9391
+ > AsposeResponse put_te_x_in_storage_to_pdf(name, src_path, opts)
9392
+
9393
+ Convert TeX file (located on storage) to PDF format and upload resulting file to storage.
9394
+
9395
+ ### Parameters
9396
+
9397
+ Name | Type | Description | Notes
9398
+ ------------- | ------------- | ------------- | -------------
9399
+ **name** | **String**| The document name. |
9400
+ **src_path** | **String**| Full source filename (ex. /folder1/folder2/template.tex) |
9401
+ **dst_folder** | **String**| The destination document folder. | [optional]
9402
+ **storage** | **String**| The document storage. | [optional]
9403
+
9404
+ ### Return type
9405
+
9406
+ [**AsposeResponse**](AsposeResponse.md)
9407
+
9408
+ ### HTTP request headers
9409
+
9410
+ - **Content-Type**: application/json
9411
+ - **Accept**: application/json
9412
+
9413
+
9414
+
9218
9415
  # **put_text_annotation**
9219
9416
  > TextAnnotationResponse put_text_annotation(name, annotation_id, annotation, opts)
9220
9417
 
@@ -9379,7 +9576,7 @@ Name | Type | Description | Notes
9379
9576
  # **put_xfa_pdf_in_request_to_acro_form**
9380
9577
  > AsposeResponse put_xfa_pdf_in_request_to_acro_form(out_path, opts)
9381
9578
 
9382
- Converts PDF document which contatins XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
9579
+ Converts PDF document which contains XFA form (in request content) to PDF with AcroForm and uploads resulting file to storage.
9383
9580
 
9384
9581
  ### Parameters
9385
9582
 
@@ -9403,7 +9600,7 @@ Name | Type | Description | Notes
9403
9600
  # **put_xfa_pdf_in_storage_to_acro_form**
9404
9601
  > AsposeResponse put_xfa_pdf_in_storage_to_acro_form(name, out_path, opts)
9405
9602
 
9406
- Converts PDF document which contatins XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
9603
+ Converts PDF document which contains XFA form (located on storage) to PDF with AcroForm and uploads resulting file to storage
9407
9604
 
9408
9605
  ### Parameters
9409
9606