All URIs are relative to https://api.hellosign.com/v3
Method | HTTP request | Description |
---|---|---|
template_add_user |
POST /template/add_user/{template_id} |
Add User to Template |
template_create |
POST /template/create |
Create Template |
template_create_embedded_draft |
POST /template/create_embedded_draft |
Create Embedded Template Draft |
template_delete |
POST /template/delete/{template_id} |
Delete Template |
template_files |
GET /template/files/{template_id} |
Get Template Files |
template_files_as_data_uri |
GET /template/files_as_data_uri/{template_id} |
Get Template Files as Data Uri |
template_files_as_file_url |
GET /template/files_as_file_url/{template_id} |
Get Template Files as File Url |
template_get |
GET /template/{template_id} |
Get Template |
template_list |
GET /template/list |
List Templates |
template_remove_user |
POST /template/remove_user/{template_id} |
Remove User from Template |
template_update_files |
POST /template/update_files/{template_id} |
Update Template Files |
<TemplateGetResponse> template_add_user(template_id, template_add_user_request)
Add User to Template
Gives the specified Account access to the specified Template. The specified Account must be a part of your Team.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
data = Dropbox::Sign::TemplateAddUserRequest.new
data.email_address = "george@dropboxsign.com"
template_id = "f57db65d3f933b5316d398057a36176831451a35"
begin
result = template_api.template_add_user(template_id, data)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateGetResponse>, Integer, Hash)> template_add_user_with_http_info(template_id, template_add_user_request)
begin
# Add User to Template
data, status_code, headers = api_instance.template_add_user_with_http_info(template_id, template_add_user_request)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateGetResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_add_user_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the Template to give the Account access to. | |
template_add_user_request |
TemplateAddUserRequest |
- Content-Type: application/json
- Accept: application/json
<TemplateCreateResponse> template_create(template_create_request)
Create Template
Creates a template that can then be used.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
role_1 = Dropbox::Sign::SubTemplateRole.new
role_1.name = "Client"
role_1.order = 0
role_2 = Dropbox::Sign::SubTemplateRole.new
role_2.name = "Witness"
role_2.order = 1
merge_field_1 = Dropbox::Sign::SubMergeField.new
merge_field_1.name = "Full Name"
merge_field_1.type = "text"
merge_field_2 = Dropbox::Sign::SubMergeField.new
merge_field_2.name = "Is Registered?"
merge_field_2.type = "checkbox"
field_options = Dropbox::Sign::SubFieldOptions.new
field_options.date_format = "DD - MM - YYYY"
data = Dropbox::Sign::TemplateCreateRequest.new
data.client_id = "37dee8d8440c66d54cfa05d92c160882"
data.files = [File.new("example_signature_request.pdf", "r")]
data.title = "Test Template"
data.subject = "Please sign this document"
data.message = "For your approval"
data.signer_roles = [role_1, role_2]
data.cc_roles = ["Manager"]
data.merge_fields = [merge_field_1, merge_field_2]
data.field_options = field_options
data.test_mode = true
begin
result = template_api.template_create(data)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateCreateResponse>, Integer, Hash)> template_create_with_http_info(template_create_request)
begin
# Create Template
data, status_code, headers = api_instance.template_create_with_http_info(template_create_request)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateCreateResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_create_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_create_request |
TemplateCreateRequest |
- Content-Type: application/json, multipart/form-data
- Accept: application/json
<TemplateCreateEmbeddedDraftResponse> template_create_embedded_draft(template_create_embedded_draft_request)
Create Embedded Template Draft
The first step in an embedded template workflow. Creates a draft template that can then be further set up in the template 'edit' stage.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
role_1 = Dropbox::Sign::SubTemplateRole.new
role_1.name = "Client"
role_1.order = 0
role_2 = Dropbox::Sign::SubTemplateRole.new
role_2.name = "Witness"
role_2.order = 1
merge_field_1 = Dropbox::Sign::SubMergeField.new
merge_field_1.name = "Full Name"
merge_field_1.type = "text"
merge_field_2 = Dropbox::Sign::SubMergeField.new
merge_field_2.name = "Is Registered?"
merge_field_2.type = "checkbox"
field_options = Dropbox::Sign::SubFieldOptions.new
field_options.date_format = "DD - MM - YYYY"
data = Dropbox::Sign::TemplateCreateEmbeddedDraftRequest.new
data.client_id = "37dee8d8440c66d54cfa05d92c160882"
data.files = [File.new("example_signature_request.pdf", "r")]
data.title = "Test Template"
data.subject = "Please sign this document"
data.message = "For your approval"
data.signer_roles = [role_1, role_2]
data.cc_roles = ["Manager"]
data.merge_fields = [merge_field_1, merge_field_2]
data.field_options = field_options
data.test_mode = true
begin
result = template_api.template_create_embedded_draft(data)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateCreateEmbeddedDraftResponse>, Integer, Hash)> template_create_embedded_draft_with_http_info(template_create_embedded_draft_request)
begin
# Create Embedded Template Draft
data, status_code, headers = api_instance.template_create_embedded_draft_with_http_info(template_create_embedded_draft_request)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateCreateEmbeddedDraftResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_create_embedded_draft_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_create_embedded_draft_request |
TemplateCreateEmbeddedDraftRequest |
TemplateCreateEmbeddedDraftResponse
- Content-Type: application/json, multipart/form-data
- Accept: application/json
template_delete(template_id)
Delete Template
Completely deletes the template specified from the account.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
template_id = "5de8179668f2033afac48da1868d0093bf133266"
begin
result = template_api.template_delete(template_id)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data (nil
in this case), status code and headers.
<Array(nil, Integer, Hash)> template_delete_with_http_info(template_id)
begin
# Delete Template
data, status_code, headers = api_instance.template_delete_with_http_info(template_id)
p status_code # => 2xx
p headers # => { ... }
p data # => nil
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_delete_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the Template to delete. |
nil (empty response body)
- Content-Type: Not defined
- Accept: application/json
File template_files(template_id, opts)
Get Template Files
Obtain a copy of the current documents specified by the template_id
parameter. Returns a PDF or ZIP file. If the files are currently being prepared, a status code of 409
will be returned instead. In this case please wait for the template_created
callback event.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
template_id = "5de8179668f2033afac48da1868d0093bf133266"
begin
file_bin = template_api.template_files(template_id)
FileUtils.cp(file_bin.path, "path/to/file.pdf")
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(File, Integer, Hash)> template_files_with_http_info(template_id, opts)
begin
# Get Template Files
data, status_code, headers = api_instance.template_files_with_http_info(template_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => File
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_files_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the template files to retrieve. | |
file_type |
String | Set to pdf for a single merged document or zip for a collection of individual documents. |
[optional] |
File
- Content-Type: Not defined
- Accept: application/pdf, application/zip, application/json
<FileResponseDataUri> template_files_as_data_uri(template_id)
Get Template Files as Data Uri
Obtain a copy of the current documents specified by the template_id
parameter. Returns a JSON object with a data_uri
representing the base64 encoded file (PDFs only). If the files are currently being prepared, a status code of 409
will be returned instead. In this case please wait for the template_created
callback event.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
template_id = "5de8179668f2033afac48da1868d0093bf133266"
begin
result = template_api.template_files_as_data_uri(template_id)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<FileResponseDataUri>, Integer, Hash)> template_files_as_data_uri_with_http_info(template_id)
begin
# Get Template Files as Data Uri
data, status_code, headers = api_instance.template_files_as_data_uri_with_http_info(template_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <FileResponseDataUri>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_files_as_data_uri_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the template files to retrieve. |
- Content-Type: Not defined
- Accept: application/json
<FileResponse> template_files_as_file_url(template_id, opts)
Get Template Files as File Url
Obtain a copy of the current documents specified by the template_id
parameter. Returns a JSON object with a url to the file (PDFs only). If the files are currently being prepared, a status code of 409
will be returned instead. In this case please wait for the template_created
callback event.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
template_id = "5de8179668f2033afac48da1868d0093bf133266"
begin
result = template_api.template_files_as_file_url(template_id)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<FileResponse>, Integer, Hash)> template_files_as_file_url_with_http_info(template_id, opts)
begin
# Get Template Files as File Url
data, status_code, headers = api_instance.template_files_as_file_url_with_http_info(template_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <FileResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_files_as_file_url_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the template files to retrieve. | |
force_download |
Integer | By default when opening the file_url a browser will download the PDF and save it locally. When set to 0 the PDF file will be displayed in the browser. |
[optional][default to 1] |
- Content-Type: Not defined
- Accept: application/json
<TemplateGetResponse> template_get(template_id)
Get Template
Returns the Template specified by the template_id
parameter.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
template_id = "f57db65d3f933b5316d398057a36176831451a35"
begin
result = template_api.template_get(template_id)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateGetResponse>, Integer, Hash)> template_get_with_http_info(template_id)
begin
# Get Template
data, status_code, headers = api_instance.template_get_with_http_info(template_id)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateGetResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_get_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the Template to retrieve. |
- Content-Type: Not defined
- Accept: application/json
<TemplateListResponse> template_list(opts)
List Templates
Returns a list of the Templates that are accessible by you. Take a look at our search guide to learn more about querying templates.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
account_id = "f57db65d3f933b5316d398057a36176831451a35"
begin
result = template_api.template_list({ account_id: account_id })
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateListResponse>, Integer, Hash)> template_list_with_http_info(opts)
begin
# List Templates
data, status_code, headers = api_instance.template_list_with_http_info(opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateListResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_list_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
account_id |
String | Which account to return Templates for. Must be a team member. Use all to indicate all team members. Defaults to your account. |
[optional] |
page |
Integer | Which page number of the Template List to return. Defaults to 1 . |
[optional][default to 1] |
page_size |
Integer | Number of objects to be returned per page. Must be between 1 and 100 . Default is 20 . |
[optional][default to 20] |
query |
String | String that includes search terms and/or fields to be used to filter the Template objects. | [optional] |
- Content-Type: Not defined
- Accept: application/json
<TemplateGetResponse> template_remove_user(template_id, template_remove_user_request)
Remove User from Template
Removes the specified Account's access to the specified Template.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
data = Dropbox::Sign::TemplateRemoveUserRequest.new
data.email_address = "george@dropboxsign.com"
template_id = "21f920ec2b7f4b6bb64d3ed79f26303843046536"
begin
result = template_api.template_remove_user(template_id, data)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateGetResponse>, Integer, Hash)> template_remove_user_with_http_info(template_id, template_remove_user_request)
begin
# Remove User from Template
data, status_code, headers = api_instance.template_remove_user_with_http_info(template_id, template_remove_user_request)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateGetResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_remove_user_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The id of the Template to remove the Account's access to. | |
template_remove_user_request |
TemplateRemoveUserRequest |
- Content-Type: application/json
- Accept: application/json
<TemplateUpdateFilesResponse> template_update_files(template_id, template_update_files_request)
Update Template Files
Overlays a new file with the overlay of an existing template. The new file(s) must: 1. have the same or higher page count 2. the same orientation as the file(s) being replaced. This will not overwrite or in any way affect the existing template. Both the existing template and new template will be available for use after executing this endpoint. Also note that this will decrement your template quota. Overlaying new files is asynchronous and a successful call to this endpoint will return 200 OK response if the request passes initial validation checks. It is recommended that a callback be implemented to listen for the callback event. A template_created
event will be sent when the files are updated or a template_error
event will be sent if there was a problem while updating the files. If a callback handler has been configured and the event has not been received within 60 minutes of making the call, check the status of the request in the API dashboard and retry the request if necessary. If the page orientation or page count is different from the original template document, we will notify you with a template_error
callback event.
require "dropbox-sign"
Dropbox::Sign.configure do |config|
# Configure HTTP basic authorization: api_key
config.username = "YOUR_API_KEY"
# or, configure Bearer (JWT) authorization: oauth2
# config.access_token = "YOUR_ACCESS_TOKEN"
end
template_api = Dropbox::Sign::TemplateApi.new
data = Dropbox::Sign::TemplateUpdateFilesRequest.new
data.files = [File.new("example_signature_request.pdf", "r")]
template_id = "5de8179668f2033afac48da1868d0093bf133266"
begin
result = template_api.template_update_files(template_id, data)
p result
rescue Dropbox::Sign::ApiError => e
puts "Exception when calling Dropbox Sign API: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<TemplateUpdateFilesResponse>, Integer, Hash)> template_update_files_with_http_info(template_id, template_update_files_request)
begin
# Update Template Files
data, status_code, headers = api_instance.template_update_files_with_http_info(template_id, template_update_files_request)
p status_code # => 2xx
p headers # => { ... }
p data # => <TemplateUpdateFilesResponse>
rescue Dropbox::Sign::ApiError => e
puts "Error when calling TemplateApi->template_update_files_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
template_id |
String | The ID of the template whose files to update. | |
template_update_files_request |
TemplateUpdateFilesRequest |
- Content-Type: application/json, multipart/form-data
- Accept: application/json