@@ -11,6 +11,7 @@ Method | HTTP request | Description
11
11
[ ** delete_bookmark** ] ( PdfApi.md#delete_bookmark ) | ** DELETE** /pdf/\{ name}/bookmarks/bookmark/\{ bookmarkPath} | Delete document bookmark by ID.
12
12
[ ** delete_document_annotations** ] ( PdfApi.md#delete_document_annotations ) | ** DELETE** /pdf/\{ name}/annotations | Delete all annotations from the document
13
13
[ ** delete_document_bookmarks** ] ( PdfApi.md#delete_document_bookmarks ) | ** DELETE** /pdf/\{ name}/bookmarks/tree | Delete all document bookmarks.
14
+ [ ** delete_document_layer** ] ( PdfApi.md#delete_document_layer ) | ** DELETE** /pdf/\{ name}/layers | Remove document layer.
14
15
[ ** delete_document_link_annotations** ] ( PdfApi.md#delete_document_link_annotations ) | ** DELETE** /pdf/\{ name}/links | Delete all link annotations from the document
15
16
[ ** delete_document_stamps** ] ( PdfApi.md#delete_document_stamps ) | ** DELETE** /pdf/\{ name}/stamps | Delete all stamps from the document
16
17
[ ** delete_document_tables** ] ( PdfApi.md#delete_document_tables ) | ** DELETE** /pdf/\{ name}/tables | Delete all tables from the document
@@ -50,6 +51,7 @@ Method | HTTP request | Description
50
51
[ ** get_document_free_text_annotations** ] ( PdfApi.md#get_document_free_text_annotations ) | ** GET** /pdf/\{ name}/annotations/freetext | Read document free text annotations.
51
52
[ ** get_document_highlight_annotations** ] ( PdfApi.md#get_document_highlight_annotations ) | ** GET** /pdf/\{ name}/annotations/highlight | Read document highlight annotations.
52
53
[ ** get_document_ink_annotations** ] ( PdfApi.md#get_document_ink_annotations ) | ** GET** /pdf/\{ name}/annotations/ink | Read document ink annotations.
54
+ [ ** get_document_layers** ] ( PdfApi.md#get_document_layers ) | ** GET** /pdf/\{ name}/layers | Gets document layers.
53
55
[ ** get_document_line_annotations** ] ( PdfApi.md#get_document_line_annotations ) | ** GET** /pdf/\{ name}/annotations/line | Read document line annotations.
54
56
[ ** get_document_list_box_fields** ] ( PdfApi.md#get_document_list_box_fields ) | ** GET** /pdf/\{ name}/fields/listbox | Read document listbox fields.
55
57
[ ** get_document_movie_annotations** ] ( PdfApi.md#get_document_movie_annotations ) | ** GET** /pdf/\{ name}/annotations/movie | Read document movie annotations.
@@ -266,6 +268,7 @@ Method | HTTP request | Description
266
268
[ ** put_circle_annotation** ] ( PdfApi.md#put_circle_annotation ) | ** PUT** /pdf/\{ name}/annotations/circle/\{ annotationId} | Replace document circle annotation
267
269
[ ** put_combo_box_field** ] ( PdfApi.md#put_combo_box_field ) | ** PUT** /pdf/\{ name}/fields/combobox/\{ fieldName} | Replace document combobox field
268
270
[ ** put_create_document** ] ( PdfApi.md#put_create_document ) | ** PUT** /pdf/\{ name} | Create empty document.
271
+ [ ** put_create_pdf_from_layer** ] ( PdfApi.md#put_create_pdf_from_layer ) | ** PUT** /pdf/\{ name}/layers | Create a separate PDF from a PDF Layer and upload resulting file to storage.
269
272
[ ** put_decrypt_document** ] ( PdfApi.md#put_decrypt_document ) | ** PUT** /pdf/decrypt | Decrypt document from content.
270
273
[ ** put_document_display_properties** ] ( PdfApi.md#put_document_display_properties ) | ** PUT** /pdf/\{ name}/displayproperties | Update document display properties.
271
274
[ ** put_encrypt_document** ] ( PdfApi.md#put_encrypt_document ) | ** PUT** /pdf/encrypt | Encrypt document from content.
@@ -547,6 +550,33 @@ Name | Type | Description | Notes
547
550
548
551
549
552
553
+ # ** delete_document_layer**
554
+ > AsposeResponse delete_document_layer(name, page_number, layer_id, opts)
555
+
556
+ Remove document layer.
557
+
558
+ ### Parameters
559
+
560
+ Name | Type | Description | Notes
561
+ ------------- | ------------- | ------------- | -------------
562
+ ** name** | ** String** | The document name. |
563
+ ** page_number** | ** Integer** | Layer page. |
564
+ ** layer_id** | ** String** | Layer Id. |
565
+ ** folder** | ** String** | The document folder. | [ optional]
566
+ ** storage** | ** String** | The document storage. | [ optional]
567
+ ** pass_base64** | ** String** | The password (Base64). | [ optional]
568
+
569
+ ### Return type
570
+
571
+ [ ** AsposeResponse** ] ( AsposeResponse.md )
572
+
573
+ ### HTTP request headers
574
+
575
+ - ** Content-Type** : application/json
576
+ - ** Accept** : application/json
577
+
578
+
579
+
550
580
# ** delete_document_link_annotations**
551
581
> AsposeResponse delete_document_link_annotations(name, opts)
552
582
@@ -1508,6 +1538,31 @@ Name | Type | Description | Notes
1508
1538
1509
1539
1510
1540
1541
+ # ** get_document_layers**
1542
+ > DocumentLayers get_document_layers(name, opts)
1543
+
1544
+ Gets document layers.
1545
+
1546
+ ### Parameters
1547
+
1548
+ Name | Type | Description | Notes
1549
+ ------------- | ------------- | ------------- | -------------
1550
+ ** name** | ** String** | The document name. |
1551
+ ** folder** | ** String** | The document folder. | [ optional]
1552
+ ** storage** | ** String** | The document storage. | [ optional]
1553
+ ** pass_base64** | ** String** | The password (Base64). | [ optional]
1554
+
1555
+ ### Return type
1556
+
1557
+ [ ** DocumentLayers** ] ( DocumentLayers.md )
1558
+
1559
+ ### HTTP request headers
1560
+
1561
+ - ** Content-Type** : application/json
1562
+ - ** Accept** : application/json
1563
+
1564
+
1565
+
1511
1566
# ** get_document_line_annotations**
1512
1567
> LineAnnotationsResponse get_document_line_annotations(name, opts)
1513
1568
@@ -7059,6 +7114,34 @@ Name | Type | Description | Notes
7059
7114
7060
7115
7061
7116
7117
+ # ** put_create_pdf_from_layer**
7118
+ > AsposeResponse put_create_pdf_from_layer(name, page_number, out_path, layer_id, opts)
7119
+
7120
+ Create a separate PDF from a PDF Layer and upload resulting file to storage.
7121
+
7122
+ ### Parameters
7123
+
7124
+ Name | Type | Description | Notes
7125
+ ------------- | ------------- | ------------- | -------------
7126
+ ** name** | ** String** | The document name. |
7127
+ ** page_number** | ** Integer** | The page number. |
7128
+ ** out_path** | ** String** | The out path of result image. |
7129
+ ** layer_id** | ** String** | Layer Id. |
7130
+ ** folder** | ** String** | The document folder. | [ optional]
7131
+ ** storage** | ** String** | The document storage. | [ optional]
7132
+ ** pass_base64** | ** String** | The password (Base64). | [ optional]
7133
+
7134
+ ### Return type
7135
+
7136
+ [ ** AsposeResponse** ] ( AsposeResponse.md )
7137
+
7138
+ ### HTTP request headers
7139
+
7140
+ - ** Content-Type** : application/json
7141
+ - ** Accept** : application/json
7142
+
7143
+
7144
+
7062
7145
# ** put_decrypt_document**
7063
7146
> AsposeResponse put_decrypt_document(out_path, password, opts)
7064
7147
0 commit comments