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
function createAndSendEnvelope (loginAccounts, next) { | |
var fileBytes = null; | |
try { | |
var fs = require('fs'), | |
path = require('path'); | |
// read file from a local directory | |
fileBytes = fs.readFileSync(path.resolve(__filename + '/..' + SignTest1File)); | |
} catch (ex) { |
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
// Install NPM package or download source | |
// https://www.npmjs.com/package/docusign-node | |
var docusign = require('docusign-node'); | |
var async = require('async'); | |
var assert = require('assert'); | |
var fs = require('fs'); | |
var integratorKey = "INTEGRATOR_KEY"; | |
var email = "EMAIL"; |
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
var docusign = require('docusign-esign'); | |
var async = require('async'); | |
var integratorKey = '[INTEGRATOR_KEY]', // Integrator Key associated with your DocuSign Integration | |
email = '[EMAIL]', // Email for your DocuSign Account | |
password = '[PASSWORD]', // Password for your DocuSign Account | |
recipientName = '[RECIPIENT_NAME]', // Recipient's Full Name | |
recipientEmail = '[RECIPIENT_EMAIL]'; // Recipient's Email | |
var basePath = "https://demo.docusign.net/restapi"; |
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 | |
// | |
// DocuSign API Quickstart - Request Signature | |
// | |
// Download PHP client: https://github.com/docusign/DocuSign-PHP-Client | |
require_once './DocuSign-PHP-Client/src/DocuSign_Client.php'; | |
require_once './DocuSign-PHP-Client/src/service/DocuSign_RequestSignatureService.php'; |
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 Quickstart - Embedded Signing | |
// | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Diagnostics; |
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 Quickstart - Request Signature | |
// | |
import java.io.IOException; | |
import java.io.File; | |
import java.net.MalformedURLException; | |
import java.util.Arrays; | |
import java.util.List; |
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 | |
// | |
// DocuSign API Quickstart - Embedded Signing | |
// | |
// Download PHP client: https://github.com/docusign/DocuSign-PHP-Client | |
require_once './DocuSign-PHP-Client/src/DocuSign_Client.php'; | |
require_once './DocuSign-PHP-Client/src/service/DocuSign_RequestSignatureService.php'; | |
require_once './DocuSign-PHP-Client/src/service/DocuSign_ViewsService.php'; |
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 Quickstart - Embedded Signing | |
// | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Diagnostics; |
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 Quickstart - Embedded Signing | |
// | |
import java.io.IOException; | |
import java.io.File; | |
import java.net.MalformedURLException; | |
import java.util.Arrays; | |
import java.util.List; |
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 | |
// set recipient information | |
$recipientName = "[RECIPIENT_NAME]"; | |
$recipientEmail = "[RECIPIENT_EMAIL]"; | |
// configure the document we want signed | |
$documentFileName = "[PATH/TO/DOCUMENT.PDF]"; | |
$documentName = "TestFile.pdf"; |