This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 01 in Java - Request Signature from Template | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; | |
public class requestSignatureTemplate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 02 in Java - Get Envelope Information | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; | |
public class getEnvelopeInfo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 03 in Java - Get Envelope Recipient Status | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 04 in Java - Request Signature on Document | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 05 in Java - Get Set of Envelopes based on filter | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 06 in Java - Get Envelope Document List and Download Documents | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; | |
import org.w3c.dom.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 07 in Java - Embedded Sending | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 08 in Java - Embedded Signing | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 09 in Java - Embedded DocuSign Console | |
import java.io.*; | |
import java.net.URL; | |
import java.net.HttpURLConnection; | |
import javax.xml.transform.*; | |
import javax.xml.transform.stream.*; | |
import javax.xml.xpath.*; | |
import org.xml.sax.InputSource; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// DocuSign API Walkthrough 01 in C# - Request Signature from Template | |
// | |
// To run this sample: | |
// 1) Create a new .NET project. | |
// 2) Add 4 assembly references to the project: System, System.Net, System.XML, and System.XML.Linq | |
// 3) Update the email, password, integrator key, and template variables in the code | |
// 4) Compile and Run | |
// | |
// NOTE 1: This sample requires that you first create a Template through the DocuSign member Console. | |
// |
OlderNewer