Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(VBScript) DocuSign: Requesting a Signature via Email (Remote Signing)See more DocuSign ExamplesThis code example demonstrates the simplest and quickest workflow for requesting a signature for a document via email. The email will contain a signing link the recipient can use to electronically sign a document from their mobile or desktop computer. For more information, see https://developers.docusign.com/esign-rest-api/code-examples/quickstart-request-signature-email
Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") 'Create a Unicode (utf-16) output text file. Set outFile = fso.CreateTextFile("output.txt", True, True) ' This example assumes the Chilkat API to have been previously unlocked. ' See Global Unlock Sample for sample code. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http") set http = CreateObject("Chilkat.Http") ' Implements the following CURL command: ' curl --request POST https://demo.docusign.net/restapi/v2.1/accounts/${accountId}/envelopes \ ' --header "Authorization: Bearer ${accessToken}" \ ' --header "Content-Type: application/json" \ ' --data '{ ' "emailSubject": "Please sign this document", ' "documents": [ ' { ' "documentBase64": "JVBERi0xLjMKMyAwIG9iag ... dGFydHhyZWYKNjk5CiUlRU9GCg==", ' "name": "Lorem Ipsum", ' "fileExtension": "pdf", ' "documentId": "1" ' } ' ], ' "recipients": { ' "signers": [ ' { ' "email": "joe_sample@example.com", ' "name": "Joe Sample", ' "recipientId": "1", ' "routingOrder": "1", ' "tabs": { ' "signHereTabs": [ ' { ' "documentId": "1", "pageNumber": "1", ' "recipientId": "1", "tabLabel": "SignHereTab", ' "xPosition": "195", "yPosition": "147" ' } ' ] ' } ' } ' ] ' }, ' "status": "sent" ' }' ' Use this online tool to generate code from sample JSON: ' Generate Code to Create JSON ' The following JSON is sent in the request body. ' { ' "emailSubject": "Please sign this document", ' "documents": [ ' { ' "documentBase64": "JVBERi0xLjMKMyAwIG9iag ... dGFydHhyZWYKNjk5CiUlRU9GCg==", ' "name": "Lorem Ipsum", ' "fileExtension": "pdf", ' "documentId": "1" ' } ' ], ' "recipients": { ' "signers": [ ' { ' "email": "joe_sample@example.com", ' "name": "Joe Sample", ' "recipientId": "1", ' "routingOrder": "1", ' "tabs": { ' "signHereTabs": [ ' { ' "documentId": "1", ' "pageNumber": "1", ' "recipientId": "1", ' "tabLabel": "SignHereTab", ' "xPosition": "195", ' "yPosition": "147" ' } ' ] ' } ' } ' ] ' }, ' "status": "sent" ' } ' Load a PDF to be signed. ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.BinData") set pdfData = CreateObject("Chilkat.BinData") success = pdfData.LoadFile("qa_data/pdf/helloWorld.pdf") If (success = 0) Then outFile.WriteLine("Failed to load local PDF file.") WScript.Quit End If ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set json = CreateObject("Chilkat.JsonObject") success = json.UpdateString("emailSubject","Please sign this document") success = json.UpdateString("documents[0].documentBase64",pdfData.GetEncoded("base64")) success = json.UpdateString("documents[0].name","Lorem Ipsum") success = json.UpdateString("documents[0].fileExtension","pdf") success = json.UpdateString("documents[0].documentId","1") success = json.UpdateString("recipients.signers[0].email","joe_sample@example.com") success = json.UpdateString("recipients.signers[0].name","Joe Sample") success = json.UpdateString("recipients.signers[0].recipientId","1") success = json.UpdateString("recipients.signers[0].routingOrder","1") success = json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].documentId","1") success = json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].pageNumber","1") success = json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].recipientId","1") success = json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].tabLabel","SignHereTab") success = json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].xPosition","195") success = json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].yPosition","147") success = json.UpdateString("status","sent") ' Get our previously obtained OAuth2 access token, which should contain JSON like this: ' { ' "access_token": "eyJ0eXA....YQyig", ' "token_type": "Bearer", ' "refresh_token": "eyJ0eXA....auE3eHKg", ' "expires_in": 28800 ' } ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set jsonToken = CreateObject("Chilkat.JsonObject") success = jsonToken.LoadFile("qa_data/tokens/docusign.json") ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbAuth = CreateObject("Chilkat.StringBuilder") success = sbAuth.Append("Bearer ") success = sbAuth.Append(jsonToken.StringOf("access_token")) http.SetRequestHeader "Authorization",sbAuth.GetAsString() http.SetRequestHeader "Content-Type","application/json" ' Don't forget to modify this line to use your account ID ' resp is a Chilkat.HttpResponse Set resp = http.PostJson3("https://demo.docusign.net/restapi/v2.1/accounts/${accountId}/envelopes","application/json",json) If (http.LastMethodSuccess = 0) Then outFile.WriteLine(http.LastErrorText) WScript.Quit End If ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder") set sbResponseBody = CreateObject("Chilkat.StringBuilder") success = resp.GetBodySb(sbResponseBody) ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set jResp = CreateObject("Chilkat.JsonObject") success = jResp.LoadSb(sbResponseBody) jResp.EmitCompact = 0 outFile.WriteLine("Response Body:") outFile.WriteLine(jResp.Emit()) respStatusCode = resp.StatusCode outFile.WriteLine("Response Status Code = " & respStatusCode) If (respStatusCode >= 400) Then outFile.WriteLine("Response Header:") outFile.WriteLine(resp.Header) outFile.WriteLine("Failed.") WScript.Quit End If ' Sample JSON response: ' (Sample code for parsing the JSON response is shown below) ' { ' "envelopeId": "d51cfdab-22ed-4832-bf68-446c44077ffc", ' "uri": "/envelopes/d51cfdab-22ed-4832-bf68-446c44077ffc", ' "statusDateTime": "2018-04-17T16:31:51.8830000Z", ' "status": "sent" ' } ' Sample code for parsing the JSON response... ' Use the following online tool to generate parsing code from sample JSON: ' Generate Parsing Code from JSON envelopeId = jResp.StringOf("envelopeId") uri = jResp.StringOf("uri") statusDateTime = jResp.StringOf("statusDateTime") status = jResp.StringOf("status") outFile.Close |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.