All URIs are relative to https://api.hellosign.com/v3
| Method | HTTP request | Description |
|---|---|---|
account_create |
POST /account/create |
Create Account |
account_get |
GET /account |
Get Account |
account_update |
PUT /account |
Update Account |
account_verify |
POST /account/verify |
Verify Account |
AccountCreateResponse account_create(account_create_request)
Create Account
Creates a new Dropbox Sign Account that is associated with the specified email_address.
- Basic Authentication (api_key):
- Bearer (JWT) Authentication (oauth2):
import json
from datetime import date, datetime
from pprint import pprint
from dropbox_sign import ApiClient, ApiException, Configuration, api, models
configuration = Configuration(
username="YOUR_API_KEY",
# access_token="YOUR_ACCESS_TOKEN",
)
with ApiClient(configuration) as api_client:
account_create_request = models.AccountCreateRequest(
email_address="newuser@dropboxsign.com",
)
try:
response = api.AccountApi(api_client).account_create(
account_create_request=account_create_request,
)
pprint(response)
except ApiException as e:
print("Exception when calling AccountApi#account_create: %s\n" % e)
### Parameters
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| `account_create_request` | [**AccountCreateRequest**](AccountCreateRequest.md) | | |
### Return type
[**AccountCreateResponse**](AccountCreateResponse.md)
### Authorization
[api_key](../README.md#api_key), [oauth2](../README.md#oauth2)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | * X-RateLimit-Limit - <br> * X-RateLimit-Remaining - <br> * X-Ratelimit-Reset - <br> |
**4XX** | failed_operation | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# ```account_get```
> ```AccountGetResponse account_get()```
Get Account
Returns the properties and settings of your Account.
### Example
* Basic Authentication (api_key):
* Bearer (JWT) Authentication (oauth2):
```python
import json
from datetime import date, datetime
from pprint import pprint
from dropbox_sign import ApiClient, ApiException, Configuration, api, models
configuration = Configuration(
username="YOUR_API_KEY",
# access_token="YOUR_ACCESS_TOKEN",
)
with ApiClient(configuration) as api_client:
try:
response = api.AccountApi(api_client).account_get()
pprint(response)
except ApiException as e:
print("Exception when calling AccountApi#account_get: %s\n" % e)
### Parameters
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| `account_id` | **str** | `account_id` or `email_address` is required. If both are provided, the account id prevails. The ID of the Account. | [optional] |
| `email_address` | **str** | `account_id` or `email_address` is required, If both are provided, the account id prevails. The email address of the Account. | [optional] |
### Return type
[**AccountGetResponse**](AccountGetResponse.md)
### Authorization
[api_key](../README.md#api_key), [oauth2](../README.md#oauth2)
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | * X-RateLimit-Limit - <br> * X-RateLimit-Remaining - <br> * X-Ratelimit-Reset - <br> |
**4XX** | failed_operation | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# ```account_update```
> ```AccountGetResponse account_update(account_update_request)```
Update Account
Updates the properties and settings of your Account. Currently only allows for updates to the [Callback URL](/api/reference/tag/Callbacks-and-Events) and locale.
### Example
* Basic Authentication (api_key):
* Bearer (JWT) Authentication (oauth2):
```python
import json
from datetime import date, datetime
from pprint import pprint
from dropbox_sign import ApiClient, ApiException, Configuration, api, models
configuration = Configuration(
username="YOUR_API_KEY",
# access_token="YOUR_ACCESS_TOKEN",
)
with ApiClient(configuration) as api_client:
account_update_request = models.AccountUpdateRequest(
callback_url="https://www.example.com/callback",
locale="en-US",
)
try:
response = api.AccountApi(api_client).account_update(
account_update_request=account_update_request,
)
pprint(response)
except ApiException as e:
print("Exception when calling AccountApi#account_update: %s\n" % e)
### Parameters
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| `account_update_request` | [**AccountUpdateRequest**](AccountUpdateRequest.md) | | |
### Return type
[**AccountGetResponse**](AccountGetResponse.md)
### Authorization
[api_key](../README.md#api_key), [oauth2](../README.md#oauth2)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | * X-RateLimit-Limit - <br> * X-RateLimit-Remaining - <br> * X-Ratelimit-Reset - <br> |
**4XX** | failed_operation | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
# ```account_verify```
> ```AccountVerifyResponse account_verify(account_verify_request)```
Verify Account
Verifies whether an Dropbox Sign Account exists for the given email address.
### Example
* Basic Authentication (api_key):
* Bearer (JWT) Authentication (oauth2):
```python
import json
from datetime import date, datetime
from pprint import pprint
from dropbox_sign import ApiClient, ApiException, Configuration, api, models
configuration = Configuration(
username="YOUR_API_KEY",
# access_token="YOUR_ACCESS_TOKEN",
)
with ApiClient(configuration) as api_client:
account_verify_request = models.AccountVerifyRequest(
email_address="some_user@dropboxsign.com",
)
try:
response = api.AccountApi(api_client).account_verify(
account_verify_request=account_verify_request,
)
pprint(response)
except ApiException as e:
print("Exception when calling AccountApi#account_verify: %s\n" % e)
### Parameters
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| `account_verify_request` | [**AccountVerifyRequest**](AccountVerifyRequest.md) | | |
### Return type
[**AccountVerifyResponse**](AccountVerifyResponse.md)
### Authorization
[api_key](../README.md#api_key), [oauth2](../README.md#oauth2)
### HTTP request headers
- **Content-Type**: application/json
- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | successful operation | * X-RateLimit-Limit - <br> * X-RateLimit-Remaining - <br> * X-Ratelimit-Reset - <br> |
**4XX** | failed_operation | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)