DocuSign delivery
The DocuSign delivery sends the resulting document to DocuSign for signing.
Before configuring the delivery, connect your DocuSign account in the process:
At this step, you can select an environment: Sandbox or Production. The Sandbox environment allows you to test sending documents for signature without charges, but the documents are not valid. Make sure you have a DocuSign demo account (it’s also called a developer account) to be able to connect to DocuSign Sandbox. Otherwise, select Production.
Once connected, you can customize the DocuSign delivery settings.
Main settings
Specify the email subject and body. See how to use tokens inside these fields.
Add as many recipients as needed and assign roles to them. You can add manually or using tokens dynamically. Check how to specify recipients dynamically based on your data.
Optionally, add an access code by clicking the lock icon next to a recipient. This adds an extra level of security. The recipient must enter the code to view and sign the document.
Advanced settings
Expand the Advanced section to configure more settings:
Enable Sequential signing to control the signing order. Drag and drop recipients to define the sequence in which they sign the document:
You can also configure an expiration period for envelopes and set up reminder notifications. By default, envelopes expire after 120 days. After that, recipients can no longer view or sign them. When reminders are enabled, specify how often notifications are sent. Make sure the reminder frequency is shorter than the expiration period.
Add custom DocuSign fields
In some cases, you may need to collect additional information from signers during the signing process. You can add custom fields such as textboxes, checkboxes, and radio buttons directly to the document.
DocuSign delivery supports this. See the Custom DocuSign tags article for detailed instructions.
Specify recipients dynamically based on your data
You can define recipients dynamically using tokens in the Name and Email fields. The data passed to the process determines who receives the document.
The Email field can contain a single address or a list of addresses separated by commas or semicolons:
{
"email": "Derek Clark <d.clark@contoso.com>; Jessica Adams <j.adams@contoso.com>"
}
If you provide a list of recipients in the Email field, the Name field is ignored.
You can specify recipient names in the list by placing names before the email address:
Behavior details:
If no name is provided, the email address is used as the recipient name.
If Sequential signing is enabled, recipients receive the document in the order specified in the list.
If you add an Access code, all recipients in the list receive the same code. To assign different codes, add recipients individually in the Recipients section.
Use tokens inside email subject and body
You can insert values from your data using tokens.
Click { } to open the list of available tokens.
For example, if your data contains a property called address, insert it using the token {{address}}.
Tokens work the same way as in document templates and also support value functions.
You can also use predefined tokens:
{{@date}}- the current date and time{{@number}}- the current document number.
Note