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 C# - Request Signature on a Document | |
| // | |
| // 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, recipient name, and document name in the code | |
| // 4) Copy a sample PDF file into project directory with same name as the document name you set in the code | |
| // 5) Compile and Run | |
| // | |
| // NOTE 1: The DocuSign REST API accepts both JSON and XML formatted http requests. These C# API walkthroughs |
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 C# - Get Recipient Status | |
| // | |
| // 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 envelopeId in the code | |
| // 4) Compile and Run | |
| // | |
| // NOTE 1: The DocuSign REST API accepts both JSON and XML formatted http requests. These C# API walkthroughs | |
| // demonstrate the use of XML format, whereas the other walkthroughs show examples in JSON format. |
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 C# - Get Envelope Info of a specified envelope | |
| // | |
| // 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 envelopeId in the code | |
| // 4) Compile and Run | |
| // | |
| // NOTE 1: The DocuSign REST API accepts both JSON and XML formatted http requests. These C# API walkthroughs | |
| // demonstrate the use of XML format, whereas the other walkthroughs show examples in JSON format. |
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. | |
| // |
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 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 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 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 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 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; |