Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.

Salesforce CPQ Electronic Signature Plugin

An electronic signature plugin lets developers add electronic signature functionality to their orgs. This is useful for organizations who wish to streamline processes involving signatures, such as finalizing purchases and contracts.
Available in: All Salesforce CPQ Editions

Example

1global virtual interface ElectronicSignaturePlugin {
2	void send(QuoteDocument__c[] documents);
3	
4	void updateStatus(QuoteDocument__c[] documents);
5	
6	void revoke(QuoteDocument__c[] documents);
7	
8	String getSendButtonLabel();
9}
10
11
12global interface ElectronicSignaturePlugin2 extends ElectronicSignaturePlugin {
13	Boolean isSendButtonEnabled();
14}