ESignatureEnvelopeConfig
Parent Type
This type extends the Metadata metadata type and inherits its fullName field.
File Suffix and Directory Location
ESignatureEnvelopeConfig components have the suffix .eSignatureEnvelopeConfig and are stored in the eSignatureEnvelopeConfigs folder.
Version
ESignatureEnvelopeConfig components are available in API version 54.0 and later.
Special Access Rules
Fields
Field Name | Description |
---|---|
expirationPeriod |
|
expirationWarningPeriod |
|
firstReminderPeriod |
|
isExpirationEnabled |
|
isReminderEnabled |
|
isVendorDefaultNtfcnEnabled |
|
masterLabel |
|
reminderIntervalPeriod |
|
targetObjectName |
|
vendor |
|
vendorAccountIdentifier |
|
Declarative Metadata Sample Definition
The following is an example of an ESignatureEnvelopeConfig component.
<?xml version="1.0" encoding="UTF-8"?>
<ESignatureEnvelopeConfig xmlns="http://soap.sforce.com/2021/10/metadata">
<masterLabel>DocuSign_Contract</masterLabel>
<targetObjectName>Contract</targetObjectName>
<vendorAccountIdentifier>vai</vendorAccountIdentifier>
<isExpirationEnabled>true</isExpirationEnabled>
<expirationPeriod>2</expirationPeriod>
<expirationWarningPeriod>2</expirationWarningPeriod>
<isReminderEnabled>true</isReminderEnabled>
<firstReminderPeriod>2</firstReminderPeriod>
<reminderIntervalPeriod>2</reminderIntervalPeriod>
<isVendorDefaultNtfcnEnabled>true</isVendorDefaultNtfcnEnabled>
<vendor>DocuSign</vendor>
</ESignatureEnvelopeConfig>
The following is an example package.xml that references the previous definition.
<?xml version="1.0" encoding="UTF-8"?>
<Package xmlns="http://soap.sforce.com/2021/10/metadata">
<types>
<members>*</members>
<name>ESignatureEnvelopeConfig</name>
</types>
<version>54.0</version>
</Package>