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
#!/usr/bin/perl | |
# | |
# API WALKTHROUGH #4 in Perl - Request Signature on a Document | |
# | |
use strict; | |
use LWP 6.00; | |
use JSON; | |
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME}=0; |
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
#!/usr/bin/perl | |
# | |
# API WALKTHROUGH #5 in Perl - Get Envelope Status Info | |
# | |
use strict; | |
use LWP 6.00; | |
use JSON; | |
use Data::Dumper; | |
$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME}=0; |
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 (also where this signature request will be sent) | |
$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 | |
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-............'; | |
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) | |
$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) | |
// 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) | |
// 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: | |
$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 |