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
#!/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
#!/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 #3 in Perl - Get Envelope Recipient Information | |
# | |
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 #2 in Perl - Get Envelope Information | |
# | |
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 #1 in Perl - Request Signature from Template | |
# | |
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
# DocuSign API Walkthrough 09 (PYTHON) - Embedded DocuSign | |
import sys, httplib2, json; | |
#enter your info: | |
username = "***"; | |
password = "***"; | |
integratorKey = "***"; | |
templateId = "***"; | |
authenticateStr = "<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
# DocuSign API Walkthrough 08 (PYTHON) - Embedded Signing | |
import sys, httplib2, json; | |
#enter your info: | |
username = "***"; | |
password = "***"; | |
integratorKey = "***"; | |
templateId = "***"; | |
authenticateStr = "<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
# DocuSign API Walkthrough 07 (PYTHON) - Embedded Sending | |
import sys, httplib2, json; | |
#enter your info: | |
username = "***"; | |
password = "***"; | |
integratorKey = "***"; | |
templateId = "***"; | |
authenticateStr = "<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
# DocuSign API Walkthrough 06 (PYTHON) - Retrieve Envelope's Document List and Download documents | |
import sys, httplib2, json; | |
#enter your info: | |
username = "***"; | |
password = "***"; | |
integratorKey = "***"; | |
envelopeId = "***"; | |
envelopeUri = "/envelopes/" + envelopeId; |