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
<?php | |
// Input your info: | |
$email = "***"; // your account email | |
$password = "***"; // your account password | |
$integratorKey = "***"; // your account integrator key, found on (Preferences -> API page) | |
// construct the authentication header: | |
$header = "<DocuSignCredentials><Username>" . $email . "</Username><Password>" . $password . "</Password><IntegratorKey>" . $integratorKey . "</IntegratorKey></DocuSignCredentials>"; | |
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
<?php | |
// Input your info here: | |
$integratorKey = '***'; // found on Preferences -> API page | |
$username = '***'; // userId or email address | |
$password = '***'; // member password | |
$recipientName = '***'; // recipient (signer) name | |
$recipientEmail = '***'; // recipient (signer) email | |
$documentName = '***'; // copy doc with same name into this directory |
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
// Request Signature on a Document (Node.js) | |
// To run this sample | |
// 1. Copy the file to your local machine and give .js extension (i.e. example.js) | |
// 2. Change "***" to appropriate values | |
// 3. Install async and request packages | |
// npm install async | |
// npm install request | |
// npm install fs | |
// 4. execute |
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
// | |
// API Walkthrough 1 - Signature Request via Template (Objective-C) | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter email, password, integrator key, name, templateId, and roleName and save | |
// 3. Compile and Run | |
// | |
// Enter your info: |
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
// | |
// API Walkthrough 2 - Get Envelope Information (Objective-C) | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter email, password, integrator key, and the envelopeId of an existing envelope in your account | |
// 3. Compile and Run | |
// | |
// Enter your info: |
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
// | |
// API Walkthrough 3 - Get Envelope Recipient Information (Objective-C) | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter email, password, integrator key, and the envelopeId of an existing envelope in your account | |
// 3. Compile and Run | |
// | |
// Enter your info: |
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
// | |
// API Walkthrough 6 - Get envelope documents info and download documents | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter your email, password, integrator key and envelopeId and save | |
// 3. Run the code | |
// | |
- (void)getDocumentInfoAndDownloadDocuments |
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
// | |
// API Walkthrough 5 - Get Status of Envelopes using Date and Status filter | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter your email, password, and integrator key and save | |
// 3. Run the code | |
// | |
// Enter your info: |
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
// | |
// API Walkthrough 7 - Launch the tag-and-send (aka sender) view of an envelope in an embedded session | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter your email, password, integrator key, name, templateId, and roleName and save | |
// 3. Run the code | |
// | |
// Enter your info: |
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
// | |
// API Walkthrough 8 - Launch the signing (recipient) view of an envelope in an embedded session | |
// | |
// To run this sample: | |
// 1. Copy the below code into your iOS project | |
// 2. Enter your email, password, integrator key, name, templateId, and roleName and save | |
// 3. Run the code | |
// | |
// Enter your info: |