eversign¶
The eversign modules enable you to monitor, list, retrieve, download, create, cancel, and delete documents and templates in your eversign account.
Getting Started with eversign¶
Prerequisites
- An eversign account
In order to use eversign with Ibexa Connect, it is necessary to have an eversign account. If you do not have one, you can create an eversign account at eversign.com/signup.
The module dialog fields that are displayed in bold (in the Ibexa Connect scenario, not in this documentation article) are mandatory!
Connecting eversign to Ibexa Connect¶
To connect your eversign account to Ibexa Connect you need to obtain your API Key.
1. Log in to your eversign account.
2. Click on your profile icon in the top-left corner and select the Developer option from the menu.
3. Copy the provided API Access Key.
4. Go to Ibexa Connect and open the eversign module's Create a connection dialog.
5. Enter the API Key you have copied in step 3 to the respective field and click the Continue button to establish the connection.
The connection has been established. You can proceed with setting up the module.
Documents¶
Watch New Documents¶
Retrieves document details when a document requires your action, is waiting for others, is completed, cancelled or draft has been created.
Business | Select the business you want to monitor documents for. |
Type | Select the document's status to filter your results by. |
Limit | Set the maximum number of documents Ibexa Connect will return during one execution cycle. |
List Documents¶
Retrieves a list of documents in your account.
Business | Select the business you want to retrieve documents for. |
Type | Select the document's status to filter your results by. |
Limit | Set the maximum number of documents Ibexa Connect will return during one execution cycle. |
Get a Document¶
Retrieves document details.
Business | Select the business you want to retrieve the document for. |
Document ID | Enter (map) the ID of the document you want to retrieve details about. |
Download a Final Document¶
Downloads a final PDF version of a document.
Business | Select the business you want to download the documents for. |
Document ID | Enter (map) the ID of the document you want to download. |
Download an Original Document¶
Downloads an original PDF version of a document.
Business | Select the business you want to download the document for. |
Document ID | Enter (map) the ID of the document you want to download. |
Create a Document¶
Creates a new document.
Business |
Select the business you want to create the document for. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Title |
Enter a document title. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Message |
Enter a document message. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Files |
Add the document files you want to upload or add (existing file) to the document.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
Signers |
Add signers of the document. (reference: https://eversign.com/api/documentation/methods#create-document)
|
Cancel a Document¶
Cancels a document.
Business | Select the business you want to cancel the document for. |
Document ID | Enter (map) the ID of the document you want to cancel. |
Delete a Document¶
Deletes a document.
Only cancelled documents and draft documents or templates can be deleted.
Business | Select the business you want to delete the document for. |
Document ID | Enter (map) the ID of the document you want to delete. |
Templates¶
Watch New Templates¶
Retrieves template details when a template in the specified status is created.
Business | Select the business you want to monitor templates for. |
Type | Select the template's status to filter your results by. |
Limit | Set the maximum number of templates Ibexa Connect will return during one execution cycle. |
List Templates¶
Retrieves a list of documents in your account.
Business | Select the business you want to retrieve documents for. |
Type | Select the document's status to filter your results by. |
Limit | Set the maximum number of templates Ibexa Connect will return during one execution cycle. |
Get a Template¶
Retrieves template details.
Business | Select the business you want to retrieve the document for. |
Document ID | Enter (map) the ID of the template you want to retrieve details about. |
Create a Template¶
Creates a template.
Business |
Select the business you want to create the document for. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Title |
Enter a document title. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Message |
Enter a document message. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Files |
Add the document files you want to upload or add (existing file) to the document.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
File name |
Enter the name for the file you want to upload. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Specify file by |
Select how you want to provide the file. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
File ID |
Enter the ID of the file that has been already uploaded to your eversign account. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
File URL |
Enter the URL of the file you want to upload. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
File upload |
Map the file data from the previous module or enter the data manually. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
Fields |
Specify the fields that should be placed on the document. (reference: https://eversign.com/api/documentation/methods#create-document)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
Signers |
Add signers of the document. (reference: https://eversign.com/api/documentation/methods#create-document)
|
Use a Template¶
Creates a document using a selected template.
Business |
Select the business you want to create a document template for. |
||||||||||||||||
Template |
Select the template you want to use for the new document. |
||||||||||||||||
Signers |
Add signers for the new document.
|
||||||||||||||||
Fields |
Specify the fields for the document.
|
||||||||||||||||
Title |
Enter a document title. |
||||||||||||||||
Message |
Enter a document message. |
Other¶
List Businesses¶
Retrieves existing businesses in your eversign account.
Limit | Set the maximum number of businesses Ibexa Connect will return during one execution cycle. |
Upload a File¶
Uploads a file to your account.
Business | Select the business you want to upload a file for. |
Source File | Map the file you want to upload from the previous module (e.g. HTTP > Get a File or Google Drive > Download a File), or enter the file name and file data manually. |
Send a Reminder¶
Sends a reminder to an individual signer.
Business | Select the business you want to retrieve the document for. |
Document ID | Enter (map) the ID of the template you want to retrieve details about. |
Signer ID | Enter the ID of the signer you want to send a reminder to. |
Make an API Call¶
Allows you to perform a custom API call.
URL |
Enter a path relative to For the list of available endpoints, refer to the eversign Developer Documentation. |
Method |
Select the HTTP method you want to use: GET to retrieve information for an entry. POSTto create a new entry. PUT to update/replace an existing entry. PATCH to make a partial entry update. DELETE to delete an entry. |
Headers |
Enter the desired request headers. You don't have to add authorization headers; we already did that for you. |
Query String |
Enter the request query string. |
Body |
Enter the body content for your API call. |
Example of Use - List Documents¶
The following API call returns the first 10 documents of all types for the specified business in your eversign account:
URL: /document
Method: GET
Query String: Key: type
Value: all
Key: business_id
Value: {{the ID of the business you want to retrieve documents for}}
Key: limit
Value: 10
The result can be found in the module's Output under Bundle > Body. In our example, 10 documents were returned:
rs
Enter the desired request headers. You don't have to add authorization headers; we already did that for you.
Query String
Enter the request query string.
Body
Enter the body content for your API call.
Example of Use - List Documents¶
The following API call returns the first 10 documents of all types for the specified business in your eversign account:
URL: /document
Method: GET
Query String: Key: type
Value: all
Key: business_id
Value: {{the ID of the business you want to retrieve documents for}}
Key: limit
Value: 10
The result can be found in the module's Output under Bundle > Body. In our example, 10 documents were returned: