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
<?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
<?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: | |
$email = "***"; // your account email | |
$password = "***"; // your account password | |
$integratorKey = "***"; // your account integrator key, found on (Preferences -> API page) | |
$recipientName = "***"; // provide a recipient (signer) name | |
$templateId = "***"; // provide a valid templateId of a template in your account | |
$templateRoleName = "***"; // use same role name that exists on the template in the console | |
$clientUserId = "***"; // to add an embedded recipient you must set their clientUserId property in addition to |
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) | |
$recipientName = "***"; // provide a recipient (signer) name | |
$templateId = "***"; // provide a valid templateId of a template in your account | |
$templateRoleName = "***"; // use same role name that exists on the template in the console | |
$clientUserId = "***"; // to add an embedded recipient you must set their clientUserId property in addition to |
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: | |
$email = "***"; // your account email | |
$password = "***"; // your account password | |
$integratorKey = "***"; // your account integrator key, found on (Preferences -> API page) | |
// copy the envelopeId from an existing envelope in your account that you want | |
// to download documents from | |
$envelopeId = "***"; |
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: | |
$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: | |
$email = "***"; // your account email | |
$password = "***"; // your account password | |
$integratorKey = "***"; // your account integrator key, found on (Preferences -> API page) | |
$recipientName = "***"; // provide a recipient (signer) name | |
$documentName = "***"; // copy document with same name into this directory! | |
// construct the authentication header: |
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: | |
$email = "***"; // your account email | |
$password = "***"; // your account password | |
$integratorKey = "***"; // your account integrator key, found on (Preferences -> API page) | |
// copy the envelopeId from an existing envelope in your account that you want to query: | |
$envelopeId = 'cbe279f6-199c-.................'; | |
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: | |
$email = "***"; // your account email | |
$password = "***"; // your account password | |
$integratorKey = "***"; // your account integrator key, found on (Preferences -> API page) | |
// copy the envelopeId from an existing envelope in your account that you want to query: | |
$envelopeId = 'd8b5fd4d-4b53-............'; | |