boldsign 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- boldsign-1.0.0/LICENSE +21 -0
- boldsign-1.0.0/PKG-INFO +94 -0
- boldsign-1.0.0/README.md +313 -0
- boldsign-1.0.0/boldsign/__init__.py +170 -0
- boldsign-1.0.0/boldsign/api/__init__.py +14 -0
- boldsign-1.0.0/boldsign/api/branding_api.py +2631 -0
- boldsign-1.0.0/boldsign/api/contacts_api.py +1632 -0
- boldsign-1.0.0/boldsign/api/custom_field_api.py +1734 -0
- boldsign-1.0.0/boldsign/api/document_api.py +8220 -0
- boldsign-1.0.0/boldsign/api/identity_verification_api.py +1227 -0
- boldsign-1.0.0/boldsign/api/plan_api.py +283 -0
- boldsign-1.0.0/boldsign/api/sender_identities_api.py +1899 -0
- boldsign-1.0.0/boldsign/api/teams_api.py +1333 -0
- boldsign-1.0.0/boldsign/api/template_api.py +4504 -0
- boldsign-1.0.0/boldsign/api/user_api.py +2223 -0
- boldsign-1.0.0/boldsign/api_client.py +791 -0
- boldsign-1.0.0/boldsign/api_response.py +21 -0
- boldsign-1.0.0/boldsign/configuration.py +500 -0
- boldsign-1.0.0/boldsign/exceptions.py +198 -0
- boldsign-1.0.0/boldsign/models/__init__.py +144 -0
- boldsign-1.0.0/boldsign/models/access_code_detail.py +158 -0
- boldsign-1.0.0/boldsign/models/access_code_details.py +135 -0
- boldsign-1.0.0/boldsign/models/added.py +133 -0
- boldsign-1.0.0/boldsign/models/address.py +142 -0
- boldsign-1.0.0/boldsign/models/attachment_info.py +137 -0
- boldsign-1.0.0/boldsign/models/audit_trail.py +158 -0
- boldsign-1.0.0/boldsign/models/base64_file.py +131 -0
- boldsign-1.0.0/boldsign/models/behalf_document.py +192 -0
- boldsign-1.0.0/boldsign/models/behalf_document_records.py +133 -0
- boldsign-1.0.0/boldsign/models/behalf_of.py +130 -0
- boldsign-1.0.0/boldsign/models/billing_view_model.py +127 -0
- boldsign-1.0.0/boldsign/models/brand_created.py +127 -0
- boldsign-1.0.0/boldsign/models/brand_custom_field_details.py +143 -0
- boldsign-1.0.0/boldsign/models/branding_message.py +127 -0
- boldsign-1.0.0/boldsign/models/branding_records.py +129 -0
- boldsign-1.0.0/boldsign/models/change_recipient.py +150 -0
- boldsign-1.0.0/boldsign/models/conditional_rule.py +133 -0
- boldsign-1.0.0/boldsign/models/contact_created.py +130 -0
- boldsign-1.0.0/boldsign/models/contact_details.py +141 -0
- boldsign-1.0.0/boldsign/models/contact_page_details.py +133 -0
- boldsign-1.0.0/boldsign/models/contacts_details.py +143 -0
- boldsign-1.0.0/boldsign/models/contacts_list.py +133 -0
- boldsign-1.0.0/boldsign/models/create_contact_response.py +129 -0
- boldsign-1.0.0/boldsign/models/create_sender_identity_request.py +144 -0
- boldsign-1.0.0/boldsign/models/create_team_request.py +128 -0
- boldsign-1.0.0/boldsign/models/create_template_request.py +215 -0
- boldsign-1.0.0/boldsign/models/create_user.py +147 -0
- boldsign-1.0.0/boldsign/models/custom_domain_settings.py +130 -0
- boldsign-1.0.0/boldsign/models/custom_field_collection.py +129 -0
- boldsign-1.0.0/boldsign/models/custom_field_message.py +130 -0
- boldsign-1.0.0/boldsign/models/custom_form_field.py +285 -0
- boldsign-1.0.0/boldsign/models/delete_custom_field_reply.py +127 -0
- boldsign-1.0.0/boldsign/models/document.py +188 -0
- boldsign-1.0.0/boldsign/models/document_cc.py +128 -0
- boldsign-1.0.0/boldsign/models/document_cc_details.py +130 -0
- boldsign-1.0.0/boldsign/models/document_created.py +127 -0
- boldsign-1.0.0/boldsign/models/document_expiry_settings.py +153 -0
- boldsign-1.0.0/boldsign/models/document_files.py +133 -0
- boldsign-1.0.0/boldsign/models/document_form_fields.py +284 -0
- boldsign-1.0.0/boldsign/models/document_info.py +154 -0
- boldsign-1.0.0/boldsign/models/document_properties.py +303 -0
- boldsign-1.0.0/boldsign/models/document_reassign.py +133 -0
- boldsign-1.0.0/boldsign/models/document_records.py +133 -0
- boldsign-1.0.0/boldsign/models/document_sender_detail.py +136 -0
- boldsign-1.0.0/boldsign/models/document_signer.py +240 -0
- boldsign-1.0.0/boldsign/models/document_signer_details.py +267 -0
- boldsign-1.0.0/boldsign/models/document_tags.py +132 -0
- boldsign-1.0.0/boldsign/models/download_image_request.py +142 -0
- boldsign-1.0.0/boldsign/models/edit_sender_identity_request.py +138 -0
- boldsign-1.0.0/boldsign/models/edit_template_request.py +193 -0
- boldsign-1.0.0/boldsign/models/editable_date_field_settings.py +134 -0
- boldsign-1.0.0/boldsign/models/embedded_create_template_request.py +269 -0
- boldsign-1.0.0/boldsign/models/embedded_custom_field_created.py +127 -0
- boldsign-1.0.0/boldsign/models/embedded_document_request.py +316 -0
- boldsign-1.0.0/boldsign/models/embedded_file_details.py +142 -0
- boldsign-1.0.0/boldsign/models/embedded_file_link.py +127 -0
- boldsign-1.0.0/boldsign/models/embedded_send_created.py +130 -0
- boldsign-1.0.0/boldsign/models/embedded_send_template_form_request.py +310 -0
- boldsign-1.0.0/boldsign/models/embedded_signing_link.py +127 -0
- boldsign-1.0.0/boldsign/models/embedded_template_created.py +130 -0
- boldsign-1.0.0/boldsign/models/embedded_template_edit_request.py +178 -0
- boldsign-1.0.0/boldsign/models/embedded_template_edited.py +127 -0
- boldsign-1.0.0/boldsign/models/error.py +130 -0
- boldsign-1.0.0/boldsign/models/error_result.py +127 -0
- boldsign-1.0.0/boldsign/models/existing_form_field.py +139 -0
- boldsign-1.0.0/boldsign/models/extend_expiry.py +136 -0
- boldsign-1.0.0/boldsign/models/file_info.py +136 -0
- boldsign-1.0.0/boldsign/models/font.py +159 -0
- boldsign-1.0.0/boldsign/models/form_field.py +304 -0
- boldsign-1.0.0/boldsign/models/form_group.py +148 -0
- boldsign-1.0.0/boldsign/models/formula_field_settings.py +130 -0
- boldsign-1.0.0/boldsign/models/id_document.py +160 -0
- boldsign-1.0.0/boldsign/models/id_report.py +139 -0
- boldsign-1.0.0/boldsign/models/id_verification.py +148 -0
- boldsign-1.0.0/boldsign/models/identity_verification_settings.py +163 -0
- boldsign-1.0.0/boldsign/models/image_info.py +133 -0
- boldsign-1.0.0/boldsign/models/merge_and_send_for_sign_form.py +271 -0
- boldsign-1.0.0/boldsign/models/model_date.py +133 -0
- boldsign-1.0.0/boldsign/models/notification_settings.py +160 -0
- boldsign-1.0.0/boldsign/models/page_details.py +142 -0
- boldsign-1.0.0/boldsign/models/phone_number.py +130 -0
- boldsign-1.0.0/boldsign/models/prefill_field.py +131 -0
- boldsign-1.0.0/boldsign/models/prefill_field_request.py +132 -0
- boldsign-1.0.0/boldsign/models/problem_details.py +146 -0
- boldsign-1.0.0/boldsign/models/recipient_change_log.py +134 -0
- boldsign-1.0.0/boldsign/models/recipient_notification_settings.py +160 -0
- boldsign-1.0.0/boldsign/models/rectangle.py +137 -0
- boldsign-1.0.0/boldsign/models/reminder_message.py +135 -0
- boldsign-1.0.0/boldsign/models/reminder_settings.py +133 -0
- boldsign-1.0.0/boldsign/models/remove_authentication.py +137 -0
- boldsign-1.0.0/boldsign/models/removed.py +133 -0
- boldsign-1.0.0/boldsign/models/revoke_document.py +131 -0
- boldsign-1.0.0/boldsign/models/role.py +248 -0
- boldsign-1.0.0/boldsign/models/roles.py +247 -0
- boldsign-1.0.0/boldsign/models/send_for_sign.py +266 -0
- boldsign-1.0.0/boldsign/models/send_for_sign_from_template_form.py +259 -0
- boldsign-1.0.0/boldsign/models/sender_identity_list.py +133 -0
- boldsign-1.0.0/boldsign/models/sender_identity_view_model.py +152 -0
- boldsign-1.0.0/boldsign/models/size.py +131 -0
- boldsign-1.0.0/boldsign/models/team_created.py +127 -0
- boldsign-1.0.0/boldsign/models/team_document_records.py +133 -0
- boldsign-1.0.0/boldsign/models/team_list_response.py +133 -0
- boldsign-1.0.0/boldsign/models/team_page_details.py +130 -0
- boldsign-1.0.0/boldsign/models/team_response.py +141 -0
- boldsign-1.0.0/boldsign/models/team_update_request.py +131 -0
- boldsign-1.0.0/boldsign/models/team_users.py +162 -0
- boldsign-1.0.0/boldsign/models/teams.py +136 -0
- boldsign-1.0.0/boldsign/models/template.py +209 -0
- boldsign-1.0.0/boldsign/models/template_cc.py +130 -0
- boldsign-1.0.0/boldsign/models/template_created.py +127 -0
- boldsign-1.0.0/boldsign/models/template_form_fields.py +286 -0
- boldsign-1.0.0/boldsign/models/template_properties.py +233 -0
- boldsign-1.0.0/boldsign/models/template_records.py +133 -0
- boldsign-1.0.0/boldsign/models/template_role.py +233 -0
- boldsign-1.0.0/boldsign/models/template_sender_detail.py +130 -0
- boldsign-1.0.0/boldsign/models/template_sender_details.py +133 -0
- boldsign-1.0.0/boldsign/models/template_shared_template_detail.py +140 -0
- boldsign-1.0.0/boldsign/models/template_signer_details.py +226 -0
- boldsign-1.0.0/boldsign/models/template_tag.py +139 -0
- boldsign-1.0.0/boldsign/models/text_tag_definition.py +225 -0
- boldsign-1.0.0/boldsign/models/text_tag_offset.py +130 -0
- boldsign-1.0.0/boldsign/models/update_user.py +157 -0
- boldsign-1.0.0/boldsign/models/update_user_meta_data.py +131 -0
- boldsign-1.0.0/boldsign/models/user_page_details.py +130 -0
- boldsign-1.0.0/boldsign/models/user_properties.py +157 -0
- boldsign-1.0.0/boldsign/models/user_records.py +133 -0
- boldsign-1.0.0/boldsign/models/users_details.py +157 -0
- boldsign-1.0.0/boldsign/models/validation.py +137 -0
- boldsign-1.0.0/boldsign/models/verification_data_request.py +139 -0
- boldsign-1.0.0/boldsign/models/view_brand_details.py +208 -0
- boldsign-1.0.0/boldsign/models/view_custom_field_details.py +146 -0
- boldsign-1.0.0/boldsign/py.typed +0 -0
- boldsign-1.0.0/boldsign/rest.py +258 -0
- boldsign-1.0.0/boldsign.egg-info/PKG-INFO +94 -0
- boldsign-1.0.0/boldsign.egg-info/SOURCES.txt +160 -0
- boldsign-1.0.0/boldsign.egg-info/dependency_links.txt +1 -0
- boldsign-1.0.0/boldsign.egg-info/requires.txt +4 -0
- boldsign-1.0.0/boldsign.egg-info/top_level.txt +1 -0
- boldsign-1.0.0/pyproject.toml +71 -0
- boldsign-1.0.0/setup.cfg +7 -0
- boldsign-1.0.0/setup.py +64 -0
boldsign-1.0.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 BoldSign by Syncfusion Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the “Software”), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
boldsign-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: boldsign
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: BoldSign API
|
|
5
|
+
Home-page: https://github.com/boldsign/boldsign-python-sdk
|
|
6
|
+
Author: BoldSign
|
|
7
|
+
Author-email: support@boldsign.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: boldsign,api,sdk,BoldSign API
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: urllib3>=1.25.3
|
|
13
|
+
Requires-Dist: python-dateutil
|
|
14
|
+
Requires-Dist: pydantic>=2
|
|
15
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
16
|
+
|
|
17
|
+
# BoldSign
|
|
18
|
+
|
|
19
|
+
Easily integrate BoldSign's e-signature features into your Python applications. This package simplifies sending documents for signature, embedding signing ceremonies, tracking document status, downloading signed documents, and managing e-signature workflows.
|
|
20
|
+
|
|
21
|
+
## Prerequisites
|
|
22
|
+
|
|
23
|
+
- Python 3.7+
|
|
24
|
+
- Free [developer account](https://boldsign.com/esignature-api/)
|
|
25
|
+
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
- [Official API documentation](https://developers.boldsign.com/)
|
|
29
|
+
|
|
30
|
+
## Installation & Usage
|
|
31
|
+
|
|
32
|
+
You can install this package by using the pip tool:
|
|
33
|
+
```sh
|
|
34
|
+
pip install boldsign
|
|
35
|
+
```
|
|
36
|
+
(You may need to run pip with root permission: sudo pip install boldsign)
|
|
37
|
+
|
|
38
|
+
Then import the package:
|
|
39
|
+
```python
|
|
40
|
+
import boldsign
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Dependencies
|
|
44
|
+
|
|
45
|
+
This package requires the following dependencies to function properly. They will be installed automatically when you install the package:
|
|
46
|
+
|
|
47
|
+
- urllib3>=1.25.3
|
|
48
|
+
- python-dateutil
|
|
49
|
+
- pydantic>=2
|
|
50
|
+
- typing-extensions>=4.7.1
|
|
51
|
+
|
|
52
|
+
## Getting Started
|
|
53
|
+
|
|
54
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
55
|
+
|
|
56
|
+
```python
|
|
57
|
+
|
|
58
|
+
import boldsign
|
|
59
|
+
|
|
60
|
+
configuration = boldsign.Configuration(
|
|
61
|
+
api_key = "***your_api_key***"
|
|
62
|
+
)
|
|
63
|
+
|
|
64
|
+
# Enter a context with an instance of the API client
|
|
65
|
+
with boldsign.ApiClient(configuration) as api_client:
|
|
66
|
+
# Create an instance of the DocumentApi class
|
|
67
|
+
document_api = boldsign.DocumentApi(api_client)
|
|
68
|
+
|
|
69
|
+
# Define the signature field to be added to the document
|
|
70
|
+
signatureField = boldsign.FormField(
|
|
71
|
+
fieldType="Signature", # Field type is Signature
|
|
72
|
+
pageNumber=1, # Specify the page number
|
|
73
|
+
bounds=boldsign.Rectangle(x=100, y=100, width=100, height=50), # Position and size of the signature field
|
|
74
|
+
)
|
|
75
|
+
|
|
76
|
+
# Define the signer with a name and email address
|
|
77
|
+
signer = boldsign.DocumentSigner(
|
|
78
|
+
name="David", # Name of the signer
|
|
79
|
+
emailAddress="david@example.com", # Signer's email address
|
|
80
|
+
signerType="Signer", # Specify the signer type
|
|
81
|
+
formFields=[signatureField] # Assign the signature field to the signer
|
|
82
|
+
)
|
|
83
|
+
|
|
84
|
+
# Prepare the request body for sending the document for signature
|
|
85
|
+
send_for_sign = boldsign.SendForSign(
|
|
86
|
+
title="Agreement", # Title of the document
|
|
87
|
+
signers=[signer], # List of signers
|
|
88
|
+
files=["/documents/agreement.pdf"] # Path to the document file to be signed
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
# Send the document for signature and capture the response
|
|
92
|
+
api_response = document_api.send_document(send_for_sign=send_for_sign)
|
|
93
|
+
```
|
|
94
|
+
|
boldsign-1.0.0/README.md
ADDED
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
# BoldSign
|
|
2
|
+
|
|
3
|
+
Easily integrate BoldSign's e-signature features into your Python applications. This package simplifies sending documents for signature, embedding signing ceremonies, tracking document status, downloading signed documents, and managing e-signature workflows.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
- Python 3.7+
|
|
8
|
+
- Free [developer account](https://boldsign.com/esignature-api/)
|
|
9
|
+
|
|
10
|
+
## Documentation
|
|
11
|
+
|
|
12
|
+
- [Official API documentation](https://developers.boldsign.com/)
|
|
13
|
+
|
|
14
|
+
## Installation & Usage
|
|
15
|
+
|
|
16
|
+
You can install this package by using the pip tool:
|
|
17
|
+
```sh
|
|
18
|
+
pip install boldsign
|
|
19
|
+
```
|
|
20
|
+
(You may need to run pip with root permission: sudo pip install boldsign)
|
|
21
|
+
|
|
22
|
+
Then import the package:
|
|
23
|
+
```python
|
|
24
|
+
import boldsign
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Dependencies
|
|
28
|
+
|
|
29
|
+
This package requires the following dependencies to function properly. They will be installed automatically when you install the package:
|
|
30
|
+
|
|
31
|
+
- urllib3>=1.25.3
|
|
32
|
+
- python-dateutil
|
|
33
|
+
- pydantic>=2
|
|
34
|
+
- typing-extensions>=4.7.1
|
|
35
|
+
|
|
36
|
+
## Getting Started
|
|
37
|
+
|
|
38
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
39
|
+
|
|
40
|
+
```python
|
|
41
|
+
|
|
42
|
+
import boldsign
|
|
43
|
+
|
|
44
|
+
configuration = boldsign.Configuration(
|
|
45
|
+
api_key = "***your_api_key***"
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
# Enter a context with an instance of the API client
|
|
49
|
+
with boldsign.ApiClient(configuration) as api_client:
|
|
50
|
+
# Create an instance of the DocumentApi class
|
|
51
|
+
document_api = boldsign.DocumentApi(api_client)
|
|
52
|
+
|
|
53
|
+
# Define the signature field to be added to the document
|
|
54
|
+
signatureField = boldsign.FormField(
|
|
55
|
+
fieldType="Signature", # Field type is Signature
|
|
56
|
+
pageNumber=1, # Specify the page number
|
|
57
|
+
bounds=boldsign.Rectangle(x=100, y=100, width=100, height=50), # Position and size of the signature field
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
# Define the signer with a name and email address
|
|
61
|
+
signer = boldsign.DocumentSigner(
|
|
62
|
+
name="David", # Name of the signer
|
|
63
|
+
emailAddress="david@example.com", # Signer's email address
|
|
64
|
+
signerType="Signer", # Specify the signer type
|
|
65
|
+
formFields=[signatureField] # Assign the signature field to the signer
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
# Prepare the request body for sending the document for signature
|
|
69
|
+
send_for_sign = boldsign.SendForSign(
|
|
70
|
+
title="Agreement", # Title of the document
|
|
71
|
+
signers=[signer], # List of signers
|
|
72
|
+
files=["/documents/agreement.pdf"] # Path to the document file to be signed
|
|
73
|
+
)
|
|
74
|
+
|
|
75
|
+
# Send the document for signature and capture the response
|
|
76
|
+
api_response = document_api.send_document(send_for_sign=send_for_sign)
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Documentation for API Endpoints
|
|
80
|
+
|
|
81
|
+
All URIs are relative to *https://api.boldsign.com*
|
|
82
|
+
|
|
83
|
+
Class | Method | HTTP request | Description
|
|
84
|
+
------------ | ------------- | ------------- | -------------
|
|
85
|
+
*BrandingApi* | [**brand_list**](docs/BrandingApi.md#brand_list) | **GET** /v1/brand/list | List all the brands.
|
|
86
|
+
*BrandingApi* | [**create_brand**](docs/BrandingApi.md#create_brand) | **POST** /v1/brand/create | Create the brand.
|
|
87
|
+
*BrandingApi* | [**delete_brand**](docs/BrandingApi.md#delete_brand) | **DELETE** /v1/brand/delete | Delete the brand.
|
|
88
|
+
*BrandingApi* | [**edit_brand**](docs/BrandingApi.md#edit_brand) | **POST** /v1/brand/edit | Edit the brand.
|
|
89
|
+
*BrandingApi* | [**get_brand**](docs/BrandingApi.md#get_brand) | **GET** /v1/brand/get | Get the specific brand details.
|
|
90
|
+
*BrandingApi* | [**reset_default_brand**](docs/BrandingApi.md#reset_default_brand) | **POST** /v1/brand/resetdefault | Reset default brand.
|
|
91
|
+
*ContactsApi* | [**contact_user_list**](docs/ContactsApi.md#contact_user_list) | **GET** /v1/contacts/list | List Contact document.
|
|
92
|
+
*ContactsApi* | [**create_contact**](docs/ContactsApi.md#create_contact) | **POST** /v1/contacts/create | Create the new Contact.
|
|
93
|
+
*ContactsApi* | [**delete_contacts**](docs/ContactsApi.md#delete_contacts) | **DELETE** /v1/contacts/delete | Deletes a contact.
|
|
94
|
+
*ContactsApi* | [**get_contact**](docs/ContactsApi.md#get_contact) | **GET** /v1/contacts/get | Get summary of the contact.
|
|
95
|
+
*ContactsApi* | [**update_contact**](docs/ContactsApi.md#update_contact) | **PUT** /v1/contacts/update | Update the contact.
|
|
96
|
+
*CustomFieldApi* | [**create_custom_field**](docs/CustomFieldApi.md#create_custom_field) | **POST** /v1/customField/create | Create the custom field.
|
|
97
|
+
*CustomFieldApi* | [**custom_fields_list**](docs/CustomFieldApi.md#custom_fields_list) | **GET** /v1/customField/list | List the custom fields respective to the brand id.
|
|
98
|
+
*CustomFieldApi* | [**delete_custom_field**](docs/CustomFieldApi.md#delete_custom_field) | **DELETE** /v1/customField/delete | Delete the custom field.
|
|
99
|
+
*CustomFieldApi* | [**edit_custom_field**](docs/CustomFieldApi.md#edit_custom_field) | **POST** /v1/customField/edit | Edit the custom field.
|
|
100
|
+
*CustomFieldApi* | [**embed_custom_field**](docs/CustomFieldApi.md#embed_custom_field) | **POST** /v1/customField/createEmbeddedCustomFieldUrl | Generates a URL for creating or modifying custom fields within your application's embedded Designer.
|
|
101
|
+
*DocumentApi* | [**add_authentication**](docs/DocumentApi.md#add_authentication) | **PATCH** /v1/document/addAuthentication | The add authentication to recipient.
|
|
102
|
+
*DocumentApi* | [**add_tag**](docs/DocumentApi.md#add_tag) | **PATCH** /v1/document/addTags | Add the Tags in Documents.
|
|
103
|
+
*DocumentApi* | [**behalf_documents**](docs/DocumentApi.md#behalf_documents) | **GET** /v1/document/behalfList | Gets the behalf documents.
|
|
104
|
+
*DocumentApi* | [**change_access_code**](docs/DocumentApi.md#change_access_code) | **PATCH** /v1/document/changeAccessCode | Changes the access code for the given document signer.
|
|
105
|
+
*DocumentApi* | [**change_recipient**](docs/DocumentApi.md#change_recipient) | **PATCH** /v1/document/changeRecipient | Change recipient details of a document.
|
|
106
|
+
*DocumentApi* | [**create_embedded_request_url_document**](docs/DocumentApi.md#create_embedded_request_url_document) | **POST** /v1/document/createEmbeddedRequestUrl | Generates a send URL which embeds document sending process into your application.
|
|
107
|
+
*DocumentApi* | [**delete_document**](docs/DocumentApi.md#delete_document) | **DELETE** /v1/document/delete | Delete the document.
|
|
108
|
+
*DocumentApi* | [**delete_tag**](docs/DocumentApi.md#delete_tag) | **DELETE** /v1/document/deleteTags | Delete the Tags in Documents.
|
|
109
|
+
*DocumentApi* | [**download_attachment**](docs/DocumentApi.md#download_attachment) | **GET** /v1/document/downloadAttachment | Download the Attachment.
|
|
110
|
+
*DocumentApi* | [**download_audit_log**](docs/DocumentApi.md#download_audit_log) | **GET** /v1/document/downloadAuditLog | Download the audit trail document.
|
|
111
|
+
*DocumentApi* | [**download_document**](docs/DocumentApi.md#download_document) | **GET** /v1/document/download | Download the document.
|
|
112
|
+
*DocumentApi* | [**extend_expiry**](docs/DocumentApi.md#extend_expiry) | **PATCH** /v1/document/extendExpiry | Extends the expiration date of the document.
|
|
113
|
+
*DocumentApi* | [**get_embedded_sign_link**](docs/DocumentApi.md#get_embedded_sign_link) | **GET** /v1/document/getEmbeddedSignLink | Get sign link for Embedded Sign.
|
|
114
|
+
*DocumentApi* | [**get_properties**](docs/DocumentApi.md#get_properties) | **GET** /v1/document/properties | Get summary of the document.
|
|
115
|
+
*DocumentApi* | [**list_documents**](docs/DocumentApi.md#list_documents) | **GET** /v1/document/list | List user documents.
|
|
116
|
+
*DocumentApi* | [**prefill_fields**](docs/DocumentApi.md#prefill_fields) | **PATCH** /v1/document/prefillFields | Updates the value (prefill) of the fields in the document.
|
|
117
|
+
*DocumentApi* | [**remind_document**](docs/DocumentApi.md#remind_document) | **POST** /v1/document/remind | Send reminder to pending signers.
|
|
118
|
+
*DocumentApi* | [**remove_authentication**](docs/DocumentApi.md#remove_authentication) | **PATCH** /v1/document/RemoveAuthentication | Remove the access code for the given document signer.
|
|
119
|
+
*DocumentApi* | [**revoke_document**](docs/DocumentApi.md#revoke_document) | **POST** /v1/document/revoke | Revoke the document.
|
|
120
|
+
*DocumentApi* | [**send_document**](docs/DocumentApi.md#send_document) | **POST** /v1/document/send | Sends the document for sign.
|
|
121
|
+
*DocumentApi* | [**team_documents**](docs/DocumentApi.md#team_documents) | **GET** /v1/document/teamlist | Get user Team documents.
|
|
122
|
+
*IdentityVerificationApi* | [**create_embedded_verification_url**](docs/IdentityVerificationApi.md#create_embedded_verification_url) | **POST** /v1/identityVerification/createEmbeddedVerificationUrl | Generate a URL that embeds manual ID verification for the specified document signer into your application.
|
|
123
|
+
*IdentityVerificationApi* | [**image**](docs/IdentityVerificationApi.md#image) | **POST** /v1/identityVerification/image | Retrieve the uploaded ID verification document or selfie image for the specified document signer using the file ID.
|
|
124
|
+
*IdentityVerificationApi* | [**report**](docs/IdentityVerificationApi.md#report) | **POST** /v1/identityVerification/report | Retrieve the ID verification report for the specified document signer.
|
|
125
|
+
*PlanApi* | [**api_credits_count**](docs/PlanApi.md#api_credits_count) | **GET** /v1/plan/apiCreditsCount | Gets the Api credits details.
|
|
126
|
+
*SenderIdentitiesApi* | [**create_sender_identities**](docs/SenderIdentitiesApi.md#create_sender_identities) | **POST** /v1/senderIdentities/create | Creates sender identity.
|
|
127
|
+
*SenderIdentitiesApi* | [**delete_sender_identities**](docs/SenderIdentitiesApi.md#delete_sender_identities) | **DELETE** /v1/senderIdentities/delete | Deletes sender identity.
|
|
128
|
+
*SenderIdentitiesApi* | [**list_sender_identities**](docs/SenderIdentitiesApi.md#list_sender_identities) | **GET** /v1/senderIdentities/list | Lists sender identity.
|
|
129
|
+
*SenderIdentitiesApi* | [**re_request_sender_identities**](docs/SenderIdentitiesApi.md#re_request_sender_identities) | **POST** /v1/senderIdentities/rerequest | Rerequests denied sender identity.
|
|
130
|
+
*SenderIdentitiesApi* | [**resend_invitation_sender_identities**](docs/SenderIdentitiesApi.md#resend_invitation_sender_identities) | **POST** /v1/senderIdentities/resendInvitation | Resends sender identity invitation.
|
|
131
|
+
*SenderIdentitiesApi* | [**update_sender_identities**](docs/SenderIdentitiesApi.md#update_sender_identities) | **POST** /v1/senderIdentities/update | Updates sender identity.
|
|
132
|
+
*TeamsApi* | [**create_team**](docs/TeamsApi.md#create_team) | **POST** /v1/teams/create | Create Team.
|
|
133
|
+
*TeamsApi* | [**get_team**](docs/TeamsApi.md#get_team) | **GET** /v1/teams/get | Get Team details.
|
|
134
|
+
*TeamsApi* | [**list_teams**](docs/TeamsApi.md#list_teams) | **GET** /v1/teams/list | List Teams.
|
|
135
|
+
*TeamsApi* | [**update_team**](docs/TeamsApi.md#update_team) | **PUT** /v1/teams/update | Update Team.
|
|
136
|
+
*TemplateApi* | [**add_tag**](docs/TemplateApi.md#add_tag) | **PATCH** /v1/template/addTags | Add the Tags in Templates.
|
|
137
|
+
*TemplateApi* | [**create_embedded_request_url_template**](docs/TemplateApi.md#create_embedded_request_url_template) | **POST** /v1/template/createEmbeddedRequestUrl | Generates a send URL using a template which embeds document sending process into your application.
|
|
138
|
+
*TemplateApi* | [**create_embedded_template_url**](docs/TemplateApi.md#create_embedded_template_url) | **POST** /v1/template/createEmbeddedTemplateUrl | Generates a create URL to embeds template create process into your application.
|
|
139
|
+
*TemplateApi* | [**create_template**](docs/TemplateApi.md#create_template) | **POST** /v1/template/create | Creates a new template.
|
|
140
|
+
*TemplateApi* | [**delete_tag**](docs/TemplateApi.md#delete_tag) | **DELETE** /v1/template/deleteTags | Delete the Tags in Templates.
|
|
141
|
+
*TemplateApi* | [**delete_template**](docs/TemplateApi.md#delete_template) | **DELETE** /v1/template/delete | Deletes a template.
|
|
142
|
+
*TemplateApi* | [**download**](docs/TemplateApi.md#download) | **GET** /v1/template/download | Download the template.
|
|
143
|
+
*TemplateApi* | [**edit_template**](docs/TemplateApi.md#edit_template) | **PUT** /v1/template/edit | Edit and updates an existing template.
|
|
144
|
+
*TemplateApi* | [**get_embedded_template_edit_url**](docs/TemplateApi.md#get_embedded_template_edit_url) | **POST** /v1/template/getEmbeddedTemplateEditUrl | Generates a edit URL to embeds template edit process into your application.
|
|
145
|
+
*TemplateApi* | [**get_properties**](docs/TemplateApi.md#get_properties) | **GET** /v1/template/properties | Get summary of the template.
|
|
146
|
+
*TemplateApi* | [**list_templates**](docs/TemplateApi.md#list_templates) | **GET** /v1/template/list | List all the templates.
|
|
147
|
+
*TemplateApi* | [**merge_and_send**](docs/TemplateApi.md#merge_and_send) | **POST** /v1/template/mergeAndSend | Send the document by merging multiple templates.
|
|
148
|
+
*TemplateApi* | [**send_using_template**](docs/TemplateApi.md#send_using_template) | **POST** /v1/template/send | Send a document for signature using a Template.
|
|
149
|
+
*UserApi* | [**cancel_invitation**](docs/UserApi.md#cancel_invitation) | **POST** /v1/users/cancelInvitation | Cancel the users invitation.
|
|
150
|
+
*UserApi* | [**create_user**](docs/UserApi.md#create_user) | **POST** /v1/users/create | Create the user.
|
|
151
|
+
*UserApi* | [**get_user**](docs/UserApi.md#get_user) | **GET** /v1/users/get | Get summary of the user.
|
|
152
|
+
*UserApi* | [**list_users**](docs/UserApi.md#list_users) | **GET** /v1/users/list | List user documents.
|
|
153
|
+
*UserApi* | [**resend_invitation**](docs/UserApi.md#resend_invitation) | **POST** /v1/users/resendInvitation | Resend the users invitation.
|
|
154
|
+
*UserApi* | [**update_meta_data**](docs/UserApi.md#update_meta_data) | **PUT** /v1/users/updateMetaData | Update new User meta data details.
|
|
155
|
+
*UserApi* | [**update_user**](docs/UserApi.md#update_user) | **PUT** /v1/users/update | Update new User role.
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
## Documentation For Models
|
|
159
|
+
|
|
160
|
+
- [AccessCodeDetail](docs/AccessCodeDetail.md)
|
|
161
|
+
- [AccessCodeDetails](docs/AccessCodeDetails.md)
|
|
162
|
+
- [Address](docs/Address.md)
|
|
163
|
+
- [AttachmentInfo](docs/AttachmentInfo.md)
|
|
164
|
+
- [AuditTrail](docs/AuditTrail.md)
|
|
165
|
+
- [Base64File](docs/Base64File.md)
|
|
166
|
+
- [BehalfDocument](docs/BehalfDocument.md)
|
|
167
|
+
- [BehalfDocumentRecords](docs/BehalfDocumentRecords.md)
|
|
168
|
+
- [BehalfOf](docs/BehalfOf.md)
|
|
169
|
+
- [BillingViewModel](docs/BillingViewModel.md)
|
|
170
|
+
- [BrandCreated](docs/BrandCreated.md)
|
|
171
|
+
- [BrandCustomFieldDetails](docs/BrandCustomFieldDetails.md)
|
|
172
|
+
- [BrandingMessage](docs/BrandingMessage.md)
|
|
173
|
+
- [BrandingRecords](docs/BrandingRecords.md)
|
|
174
|
+
- [ChangeRecipient](docs/ChangeRecipient.md)
|
|
175
|
+
- [ConditionalRule](docs/ConditionalRule.md)
|
|
176
|
+
- [ContactCreated](docs/ContactCreated.md)
|
|
177
|
+
- [ContactDetails](docs/ContactDetails.md)
|
|
178
|
+
- [ContactPageDetails](docs/ContactPageDetails.md)
|
|
179
|
+
- [ContactsDetails](docs/ContactsDetails.md)
|
|
180
|
+
- [ContactsList](docs/ContactsList.md)
|
|
181
|
+
- [CreateContactResponse](docs/CreateContactResponse.md)
|
|
182
|
+
- [CreateSenderIdentityRequest](docs/CreateSenderIdentityRequest.md)
|
|
183
|
+
- [CreateTeamRequest](docs/CreateTeamRequest.md)
|
|
184
|
+
- [CreateTemplateRequest](docs/CreateTemplateRequest.md)
|
|
185
|
+
- [CreateUser](docs/CreateUser.md)
|
|
186
|
+
- [CustomDomainSettings](docs/CustomDomainSettings.md)
|
|
187
|
+
- [CustomFieldCollection](docs/CustomFieldCollection.md)
|
|
188
|
+
- [CustomFieldMessage](docs/CustomFieldMessage.md)
|
|
189
|
+
- [CustomFormField](docs/CustomFormField.md)
|
|
190
|
+
- [DeleteCustomFieldReply](docs/DeleteCustomFieldReply.md)
|
|
191
|
+
- [Document](docs/Document.md)
|
|
192
|
+
- [DocumentCC](docs/DocumentCC.md)
|
|
193
|
+
- [DocumentCcDetails](docs/DocumentCcDetails.md)
|
|
194
|
+
- [DocumentCreated](docs/DocumentCreated.md)
|
|
195
|
+
- [DocumentExpirySettings](docs/DocumentExpirySettings.md)
|
|
196
|
+
- [DocumentFiles](docs/DocumentFiles.md)
|
|
197
|
+
- [DocumentFormFields](docs/DocumentFormFields.md)
|
|
198
|
+
- [DocumentInfo](docs/DocumentInfo.md)
|
|
199
|
+
- [DocumentProperties](docs/DocumentProperties.md)
|
|
200
|
+
- [DocumentReassign](docs/DocumentReassign.md)
|
|
201
|
+
- [DocumentRecords](docs/DocumentRecords.md)
|
|
202
|
+
- [DocumentSenderDetail](docs/DocumentSenderDetail.md)
|
|
203
|
+
- [DocumentSigner](docs/DocumentSigner.md)
|
|
204
|
+
- [DocumentSignerDetails](docs/DocumentSignerDetails.md)
|
|
205
|
+
- [DocumentTags](docs/DocumentTags.md)
|
|
206
|
+
- [DownloadImageRequest](docs/DownloadImageRequest.md)
|
|
207
|
+
- [EditSenderIdentityRequest](docs/EditSenderIdentityRequest.md)
|
|
208
|
+
- [EditTemplateRequest](docs/EditTemplateRequest.md)
|
|
209
|
+
- [EditableDateFieldSettings](docs/EditableDateFieldSettings.md)
|
|
210
|
+
- [EmbeddedCreateTemplateRequest](docs/EmbeddedCreateTemplateRequest.md)
|
|
211
|
+
- [EmbeddedCustomFieldCreated](docs/EmbeddedCustomFieldCreated.md)
|
|
212
|
+
- [EmbeddedDocumentRequest](docs/EmbeddedDocumentRequest.md)
|
|
213
|
+
- [EmbeddedFileDetails](docs/EmbeddedFileDetails.md)
|
|
214
|
+
- [EmbeddedFileLink](docs/EmbeddedFileLink.md)
|
|
215
|
+
- [EmbeddedSendCreated](docs/EmbeddedSendCreated.md)
|
|
216
|
+
- [EmbeddedSendTemplateFormRequest](docs/EmbeddedSendTemplateFormRequest.md)
|
|
217
|
+
- [EmbeddedSigningLink](docs/EmbeddedSigningLink.md)
|
|
218
|
+
- [EmbeddedTemplateCreated](docs/EmbeddedTemplateCreated.md)
|
|
219
|
+
- [EmbeddedTemplateEditRequest](docs/EmbeddedTemplateEditRequest.md)
|
|
220
|
+
- [EmbeddedTemplateEdited](docs/EmbeddedTemplateEdited.md)
|
|
221
|
+
- [Error](docs/Error.md)
|
|
222
|
+
- [ErrorResult](docs/ErrorResult.md)
|
|
223
|
+
- [ExistingFormField](docs/ExistingFormField.md)
|
|
224
|
+
- [ExtendExpiry](docs/ExtendExpiry.md)
|
|
225
|
+
- [FileInfo](docs/FileInfo.md)
|
|
226
|
+
- [Font](docs/Font.md)
|
|
227
|
+
- [FormField](docs/FormField.md)
|
|
228
|
+
- [FormGroup](docs/FormGroup.md)
|
|
229
|
+
- [FormulaFieldSettings](docs/FormulaFieldSettings.md)
|
|
230
|
+
- [IdDocument](docs/IdDocument.md)
|
|
231
|
+
- [IdReport](docs/IdReport.md)
|
|
232
|
+
- [IdVerification](docs/IdVerification.md)
|
|
233
|
+
- [IdentityVerificationSettings](docs/IdentityVerificationSettings.md)
|
|
234
|
+
- [ImageInfo](docs/ImageInfo.md)
|
|
235
|
+
- [MergeAndSendForSignForm](docs/MergeAndSendForSignForm.md)
|
|
236
|
+
- [ModelDate](docs/ModelDate.md)
|
|
237
|
+
- [NotificationSettings](docs/NotificationSettings.md)
|
|
238
|
+
- [PageDetails](docs/PageDetails.md)
|
|
239
|
+
- [PhoneNumber](docs/PhoneNumber.md)
|
|
240
|
+
- [PrefillField](docs/PrefillField.md)
|
|
241
|
+
- [PrefillFieldRequest](docs/PrefillFieldRequest.md)
|
|
242
|
+
- [RecipientNotificationSettings](docs/RecipientNotificationSettings.md)
|
|
243
|
+
- [Rectangle](docs/Rectangle.md)
|
|
244
|
+
- [ReminderMessage](docs/ReminderMessage.md)
|
|
245
|
+
- [ReminderSettings](docs/ReminderSettings.md)
|
|
246
|
+
- [RemoveAuthentication](docs/RemoveAuthentication.md)
|
|
247
|
+
- [RevokeDocument](docs/RevokeDocument.md)
|
|
248
|
+
- [Role](docs/Role.md)
|
|
249
|
+
- [Roles](docs/Roles.md)
|
|
250
|
+
- [SendForSign](docs/SendForSign.md)
|
|
251
|
+
- [SendForSignFromTemplateForm](docs/SendForSignFromTemplateForm.md)
|
|
252
|
+
- [SenderIdentityList](docs/SenderIdentityList.md)
|
|
253
|
+
- [SenderIdentityViewModel](docs/SenderIdentityViewModel.md)
|
|
254
|
+
- [Size](docs/Size.md)
|
|
255
|
+
- [TeamCreated](docs/TeamCreated.md)
|
|
256
|
+
- [TeamDocumentRecords](docs/TeamDocumentRecords.md)
|
|
257
|
+
- [TeamListResponse](docs/TeamListResponse.md)
|
|
258
|
+
- [TeamPageDetails](docs/TeamPageDetails.md)
|
|
259
|
+
- [TeamResponse](docs/TeamResponse.md)
|
|
260
|
+
- [TeamUpdateRequest](docs/TeamUpdateRequest.md)
|
|
261
|
+
- [TeamUsers](docs/TeamUsers.md)
|
|
262
|
+
- [Teams](docs/Teams.md)
|
|
263
|
+
- [Template](docs/Template.md)
|
|
264
|
+
- [TemplateCC](docs/TemplateCC.md)
|
|
265
|
+
- [TemplateCreated](docs/TemplateCreated.md)
|
|
266
|
+
- [TemplateFormFields](docs/TemplateFormFields.md)
|
|
267
|
+
- [TemplateProperties](docs/TemplateProperties.md)
|
|
268
|
+
- [TemplateRecords](docs/TemplateRecords.md)
|
|
269
|
+
- [TemplateRole](docs/TemplateRole.md)
|
|
270
|
+
- [TemplateSenderDetail](docs/TemplateSenderDetail.md)
|
|
271
|
+
- [TemplateSenderDetails](docs/TemplateSenderDetails.md)
|
|
272
|
+
- [TemplateSharedTemplateDetail](docs/TemplateSharedTemplateDetail.md)
|
|
273
|
+
- [TemplateSignerDetails](docs/TemplateSignerDetails.md)
|
|
274
|
+
- [TemplateTag](docs/TemplateTag.md)
|
|
275
|
+
- [TextTagDefinition](docs/TextTagDefinition.md)
|
|
276
|
+
- [TextTagOffset](docs/TextTagOffset.md)
|
|
277
|
+
- [UpdateUser](docs/UpdateUser.md)
|
|
278
|
+
- [UpdateUserMetaData](docs/UpdateUserMetaData.md)
|
|
279
|
+
- [UserPageDetails](docs/UserPageDetails.md)
|
|
280
|
+
- [UserProperties](docs/UserProperties.md)
|
|
281
|
+
- [UserRecords](docs/UserRecords.md)
|
|
282
|
+
- [UsersDetails](docs/UsersDetails.md)
|
|
283
|
+
- [Validation](docs/Validation.md)
|
|
284
|
+
- [VerificationDataRequest](docs/VerificationDataRequest.md)
|
|
285
|
+
- [ViewBrandDetails](docs/ViewBrandDetails.md)
|
|
286
|
+
- [ViewCustomFieldDetails](docs/ViewCustomFieldDetails.md)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
<a id="documentation-for-authorization"></a>
|
|
290
|
+
## Documentation For Authorization
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
Authentication schemes defined for the API:
|
|
294
|
+
<a id="Bearer"></a>
|
|
295
|
+
### Bearer
|
|
296
|
+
|
|
297
|
+
- **Type**: API key
|
|
298
|
+
- **API key parameter name**: Authorization
|
|
299
|
+
- **Location**: HTTP header
|
|
300
|
+
|
|
301
|
+
<a id="X-API-KEY"></a>
|
|
302
|
+
### X-API-KEY
|
|
303
|
+
|
|
304
|
+
- **Type**: API key
|
|
305
|
+
- **API key parameter name**: X-API-KEY
|
|
306
|
+
- **Location**: HTTP header
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
## Author
|
|
310
|
+
|
|
311
|
+
support@boldsign.com
|
|
312
|
+
|
|
313
|
+
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
BoldSign API
|
|
7
|
+
|
|
8
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 1
|
|
11
|
+
Contact: support@boldsign.com
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
|
|
20
|
+
# import apis into sdk package
|
|
21
|
+
from boldsign.api.branding_api import BrandingApi
|
|
22
|
+
from boldsign.api.contacts_api import ContactsApi
|
|
23
|
+
from boldsign.api.custom_field_api import CustomFieldApi
|
|
24
|
+
from boldsign.api.document_api import DocumentApi
|
|
25
|
+
from boldsign.api.identity_verification_api import IdentityVerificationApi
|
|
26
|
+
from boldsign.api.plan_api import PlanApi
|
|
27
|
+
from boldsign.api.sender_identities_api import SenderIdentitiesApi
|
|
28
|
+
from boldsign.api.teams_api import TeamsApi
|
|
29
|
+
from boldsign.api.template_api import TemplateApi
|
|
30
|
+
from boldsign.api.user_api import UserApi
|
|
31
|
+
|
|
32
|
+
# import ApiClient
|
|
33
|
+
from boldsign.api_response import ApiResponse
|
|
34
|
+
from boldsign.api_client import ApiClient
|
|
35
|
+
from boldsign.configuration import Configuration
|
|
36
|
+
from boldsign.exceptions import OpenApiException
|
|
37
|
+
from boldsign.exceptions import ApiTypeError
|
|
38
|
+
from boldsign.exceptions import ApiValueError
|
|
39
|
+
from boldsign.exceptions import ApiKeyError
|
|
40
|
+
from boldsign.exceptions import ApiAttributeError
|
|
41
|
+
from boldsign.exceptions import ApiException
|
|
42
|
+
|
|
43
|
+
# import models into sdk package
|
|
44
|
+
from boldsign.models.access_code_detail import AccessCodeDetail
|
|
45
|
+
from boldsign.models.access_code_details import AccessCodeDetails
|
|
46
|
+
from boldsign.models.address import Address
|
|
47
|
+
from boldsign.models.attachment_info import AttachmentInfo
|
|
48
|
+
from boldsign.models.audit_trail import AuditTrail
|
|
49
|
+
from boldsign.models.base64_file import Base64File
|
|
50
|
+
from boldsign.models.behalf_document import BehalfDocument
|
|
51
|
+
from boldsign.models.behalf_document_records import BehalfDocumentRecords
|
|
52
|
+
from boldsign.models.behalf_of import BehalfOf
|
|
53
|
+
from boldsign.models.billing_view_model import BillingViewModel
|
|
54
|
+
from boldsign.models.brand_created import BrandCreated
|
|
55
|
+
from boldsign.models.brand_custom_field_details import BrandCustomFieldDetails
|
|
56
|
+
from boldsign.models.branding_message import BrandingMessage
|
|
57
|
+
from boldsign.models.branding_records import BrandingRecords
|
|
58
|
+
from boldsign.models.change_recipient import ChangeRecipient
|
|
59
|
+
from boldsign.models.conditional_rule import ConditionalRule
|
|
60
|
+
from boldsign.models.contact_created import ContactCreated
|
|
61
|
+
from boldsign.models.contact_details import ContactDetails
|
|
62
|
+
from boldsign.models.contact_page_details import ContactPageDetails
|
|
63
|
+
from boldsign.models.contacts_details import ContactsDetails
|
|
64
|
+
from boldsign.models.contacts_list import ContactsList
|
|
65
|
+
from boldsign.models.create_contact_response import CreateContactResponse
|
|
66
|
+
from boldsign.models.create_sender_identity_request import CreateSenderIdentityRequest
|
|
67
|
+
from boldsign.models.create_team_request import CreateTeamRequest
|
|
68
|
+
from boldsign.models.create_template_request import CreateTemplateRequest
|
|
69
|
+
from boldsign.models.create_user import CreateUser
|
|
70
|
+
from boldsign.models.custom_domain_settings import CustomDomainSettings
|
|
71
|
+
from boldsign.models.custom_field_collection import CustomFieldCollection
|
|
72
|
+
from boldsign.models.custom_field_message import CustomFieldMessage
|
|
73
|
+
from boldsign.models.custom_form_field import CustomFormField
|
|
74
|
+
from boldsign.models.delete_custom_field_reply import DeleteCustomFieldReply
|
|
75
|
+
from boldsign.models.document import Document
|
|
76
|
+
from boldsign.models.document_cc import DocumentCC
|
|
77
|
+
from boldsign.models.document_cc_details import DocumentCcDetails
|
|
78
|
+
from boldsign.models.document_created import DocumentCreated
|
|
79
|
+
from boldsign.models.document_expiry_settings import DocumentExpirySettings
|
|
80
|
+
from boldsign.models.document_files import DocumentFiles
|
|
81
|
+
from boldsign.models.document_form_fields import DocumentFormFields
|
|
82
|
+
from boldsign.models.document_info import DocumentInfo
|
|
83
|
+
from boldsign.models.document_properties import DocumentProperties
|
|
84
|
+
from boldsign.models.document_reassign import DocumentReassign
|
|
85
|
+
from boldsign.models.document_records import DocumentRecords
|
|
86
|
+
from boldsign.models.document_sender_detail import DocumentSenderDetail
|
|
87
|
+
from boldsign.models.document_signer import DocumentSigner
|
|
88
|
+
from boldsign.models.document_signer_details import DocumentSignerDetails
|
|
89
|
+
from boldsign.models.document_tags import DocumentTags
|
|
90
|
+
from boldsign.models.download_image_request import DownloadImageRequest
|
|
91
|
+
from boldsign.models.edit_sender_identity_request import EditSenderIdentityRequest
|
|
92
|
+
from boldsign.models.edit_template_request import EditTemplateRequest
|
|
93
|
+
from boldsign.models.editable_date_field_settings import EditableDateFieldSettings
|
|
94
|
+
from boldsign.models.embedded_create_template_request import EmbeddedCreateTemplateRequest
|
|
95
|
+
from boldsign.models.embedded_custom_field_created import EmbeddedCustomFieldCreated
|
|
96
|
+
from boldsign.models.embedded_document_request import EmbeddedDocumentRequest
|
|
97
|
+
from boldsign.models.embedded_file_details import EmbeddedFileDetails
|
|
98
|
+
from boldsign.models.embedded_file_link import EmbeddedFileLink
|
|
99
|
+
from boldsign.models.embedded_send_created import EmbeddedSendCreated
|
|
100
|
+
from boldsign.models.embedded_send_template_form_request import EmbeddedSendTemplateFormRequest
|
|
101
|
+
from boldsign.models.embedded_signing_link import EmbeddedSigningLink
|
|
102
|
+
from boldsign.models.embedded_template_created import EmbeddedTemplateCreated
|
|
103
|
+
from boldsign.models.embedded_template_edit_request import EmbeddedTemplateEditRequest
|
|
104
|
+
from boldsign.models.embedded_template_edited import EmbeddedTemplateEdited
|
|
105
|
+
from boldsign.models.error import Error
|
|
106
|
+
from boldsign.models.error_result import ErrorResult
|
|
107
|
+
from boldsign.models.existing_form_field import ExistingFormField
|
|
108
|
+
from boldsign.models.extend_expiry import ExtendExpiry
|
|
109
|
+
from boldsign.models.file_info import FileInfo
|
|
110
|
+
from boldsign.models.font import Font
|
|
111
|
+
from boldsign.models.form_field import FormField
|
|
112
|
+
from boldsign.models.form_group import FormGroup
|
|
113
|
+
from boldsign.models.formula_field_settings import FormulaFieldSettings
|
|
114
|
+
from boldsign.models.id_document import IdDocument
|
|
115
|
+
from boldsign.models.id_report import IdReport
|
|
116
|
+
from boldsign.models.id_verification import IdVerification
|
|
117
|
+
from boldsign.models.identity_verification_settings import IdentityVerificationSettings
|
|
118
|
+
from boldsign.models.image_info import ImageInfo
|
|
119
|
+
from boldsign.models.merge_and_send_for_sign_form import MergeAndSendForSignForm
|
|
120
|
+
from boldsign.models.model_date import ModelDate
|
|
121
|
+
from boldsign.models.notification_settings import NotificationSettings
|
|
122
|
+
from boldsign.models.page_details import PageDetails
|
|
123
|
+
from boldsign.models.phone_number import PhoneNumber
|
|
124
|
+
from boldsign.models.prefill_field import PrefillField
|
|
125
|
+
from boldsign.models.prefill_field_request import PrefillFieldRequest
|
|
126
|
+
from boldsign.models.recipient_notification_settings import RecipientNotificationSettings
|
|
127
|
+
from boldsign.models.rectangle import Rectangle
|
|
128
|
+
from boldsign.models.reminder_message import ReminderMessage
|
|
129
|
+
from boldsign.models.reminder_settings import ReminderSettings
|
|
130
|
+
from boldsign.models.remove_authentication import RemoveAuthentication
|
|
131
|
+
from boldsign.models.revoke_document import RevokeDocument
|
|
132
|
+
from boldsign.models.role import Role
|
|
133
|
+
from boldsign.models.roles import Roles
|
|
134
|
+
from boldsign.models.send_for_sign import SendForSign
|
|
135
|
+
from boldsign.models.send_for_sign_from_template_form import SendForSignFromTemplateForm
|
|
136
|
+
from boldsign.models.sender_identity_list import SenderIdentityList
|
|
137
|
+
from boldsign.models.sender_identity_view_model import SenderIdentityViewModel
|
|
138
|
+
from boldsign.models.size import Size
|
|
139
|
+
from boldsign.models.team_created import TeamCreated
|
|
140
|
+
from boldsign.models.team_document_records import TeamDocumentRecords
|
|
141
|
+
from boldsign.models.team_list_response import TeamListResponse
|
|
142
|
+
from boldsign.models.team_page_details import TeamPageDetails
|
|
143
|
+
from boldsign.models.team_response import TeamResponse
|
|
144
|
+
from boldsign.models.team_update_request import TeamUpdateRequest
|
|
145
|
+
from boldsign.models.team_users import TeamUsers
|
|
146
|
+
from boldsign.models.teams import Teams
|
|
147
|
+
from boldsign.models.template import Template
|
|
148
|
+
from boldsign.models.template_cc import TemplateCC
|
|
149
|
+
from boldsign.models.template_created import TemplateCreated
|
|
150
|
+
from boldsign.models.template_form_fields import TemplateFormFields
|
|
151
|
+
from boldsign.models.template_properties import TemplateProperties
|
|
152
|
+
from boldsign.models.template_records import TemplateRecords
|
|
153
|
+
from boldsign.models.template_role import TemplateRole
|
|
154
|
+
from boldsign.models.template_sender_detail import TemplateSenderDetail
|
|
155
|
+
from boldsign.models.template_sender_details import TemplateSenderDetails
|
|
156
|
+
from boldsign.models.template_shared_template_detail import TemplateSharedTemplateDetail
|
|
157
|
+
from boldsign.models.template_signer_details import TemplateSignerDetails
|
|
158
|
+
from boldsign.models.template_tag import TemplateTag
|
|
159
|
+
from boldsign.models.text_tag_definition import TextTagDefinition
|
|
160
|
+
from boldsign.models.text_tag_offset import TextTagOffset
|
|
161
|
+
from boldsign.models.update_user import UpdateUser
|
|
162
|
+
from boldsign.models.update_user_meta_data import UpdateUserMetaData
|
|
163
|
+
from boldsign.models.user_page_details import UserPageDetails
|
|
164
|
+
from boldsign.models.user_properties import UserProperties
|
|
165
|
+
from boldsign.models.user_records import UserRecords
|
|
166
|
+
from boldsign.models.users_details import UsersDetails
|
|
167
|
+
from boldsign.models.validation import Validation
|
|
168
|
+
from boldsign.models.verification_data_request import VerificationDataRequest
|
|
169
|
+
from boldsign.models.view_brand_details import ViewBrandDetails
|
|
170
|
+
from boldsign.models.view_custom_field_details import ViewCustomFieldDetails
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from boldsign.api.branding_api import BrandingApi
|
|
5
|
+
from boldsign.api.contacts_api import ContactsApi
|
|
6
|
+
from boldsign.api.custom_field_api import CustomFieldApi
|
|
7
|
+
from boldsign.api.document_api import DocumentApi
|
|
8
|
+
from boldsign.api.identity_verification_api import IdentityVerificationApi
|
|
9
|
+
from boldsign.api.plan_api import PlanApi
|
|
10
|
+
from boldsign.api.sender_identities_api import SenderIdentitiesApi
|
|
11
|
+
from boldsign.api.teams_api import TeamsApi
|
|
12
|
+
from boldsign.api.template_api import TemplateApi
|
|
13
|
+
from boldsign.api.user_api import UserApi
|
|
14
|
+
|