Skip to content

Instantly share code, notes, and snippets.

@Ergin008
Ergin008 / GetRecipientStatus.py
Created December 5, 2012 19:56
Get Envelope Recipient Status
# DocuSign API Walkthrough 03 (PYTHON) - Get Envelope Recipient Status
import sys, httplib2, json;
#enter your info:
username = "***";
password = "***";
integratorKey = "***";
envelopeId = "***";
authenticateStr = "<DocuSignCredentials>" \
@Ergin008
Ergin008 / RequestSignatureDoc.py
Created December 5, 2012 19:57
Request Signature on Envelope Document
# DocuSign API Walkthrough 04 (PYTHON) - Add Signature Request to Document and Send
import sys, httplib2, json;
# Enter your info:
username = "***";
password = "***";
integratorKey = "***";
authenticateStr = "<DocuSignCredentials>" \
"<Username>" + username + "</Username>" \
@Ergin008
Ergin008 / GetEnvelopeStatus.py
Created December 5, 2012 19:58
Get Envelope Status
# DocuSign API Walkthrough 05 (PYTHON) - Get Envelope Status based on criteria
import sys, httplib2, json;
#enter your info:
username = "***";
password = "***";
integratorKey = "***";
authenticateStr = "<DocuSignCredentials>" \
"<Username>" + username + "</Username>" \
@Ergin008
Ergin008 / GetEnvelopeDocs.py
Created December 5, 2012 19:59
Get Envelope Documents
# 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;
@Ergin008
Ergin008 / EmbeddedSending.py
Created December 5, 2012 20:00
Embedded Sending
# DocuSign API Walkthrough 07 (PYTHON) - Embedded Sending
import sys, httplib2, json;
#enter your info:
username = "***";
password = "***";
integratorKey = "***";
templateId = "***";
authenticateStr = "<DocuSignCredentials>" \
@Ergin008
Ergin008 / EmbeddedSigning.py
Created December 5, 2012 20:01
Embedded Signing
# DocuSign API Walkthrough 08 (PYTHON) - Embedded Signing
import sys, httplib2, json;
#enter your info:
username = "***";
password = "***";
integratorKey = "***";
templateId = "***";
authenticateStr = "<DocuSignCredentials>" \
@Ergin008
Ergin008 / EmbeddedDocuSign.py
Created December 5, 2012 20:03
Embedded DocuSign
# DocuSign API Walkthrough 09 (PYTHON) - Embedded DocuSign
import sys, httplib2, json;
#enter your info:
username = "***";
password = "***";
integratorKey = "***";
templateId = "***";
authenticateStr = "<DocuSignCredentials>" \
#!/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;
#!/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;
#!/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;