Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) 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
#include <CkHttp.h> #include <CkBinData.h> #include <CkJsonObject.h> #include <CkStringBuilder.h> #include <CkHttpResponse.h> void ChilkatSample(void) { CkString strOut; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttp http; bool success; // 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. CkBinData pdfData; success = pdfData.LoadFile("qa_data/pdf/helloWorld.pdf"); if (success == false) { strOut.append("Failed to load local PDF file."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkJsonObject json; json.UpdateString("emailSubject","Please sign this document"); json.UpdateString("documents[0].documentBase64",pdfData.getEncoded("base64")); json.UpdateString("documents[0].name","Lorem Ipsum"); json.UpdateString("documents[0].fileExtension","pdf"); json.UpdateString("documents[0].documentId","1"); json.UpdateString("recipients.signers[0].email","joe_sample@example.com"); json.UpdateString("recipients.signers[0].name","Joe Sample"); json.UpdateString("recipients.signers[0].recipientId","1"); json.UpdateString("recipients.signers[0].routingOrder","1"); json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].documentId","1"); json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].pageNumber","1"); json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].recipientId","1"); json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].tabLabel","SignHereTab"); json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].xPosition","195"); json.UpdateString("recipients.signers[0].tabs.signHereTabs[0].yPosition","147"); 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 // } CkJsonObject jsonToken; success = jsonToken.LoadFile("qa_data/tokens/docusign.json"); CkStringBuilder sbAuth; sbAuth.Append("Bearer "); 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 CkHttpResponse *resp = http.PostJson3("https://demo.docusign.net/restapi/v2.1/accounts/${accountId}/envelopes","application/json",json); if (http.get_LastMethodSuccess() == false) { strOut.append(http.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } CkStringBuilder sbResponseBody; resp->GetBodySb(sbResponseBody); CkJsonObject jResp; jResp.LoadSb(sbResponseBody); jResp.put_EmitCompact(false); strOut.append("Response Body:"); strOut.append("\r\n"); strOut.append(jResp.emit()); strOut.append("\r\n"); int respStatusCode = resp->get_StatusCode(); strOut.append("Response Status Code = "); strOut.appendInt(respStatusCode); strOut.append("\r\n"); if (respStatusCode >= 400) { strOut.append("Response Header:"); strOut.append("\r\n"); strOut.append(resp->header()); strOut.append("\r\n"); strOut.append("Failed."); strOut.append("\r\n"); delete resp; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete resp; // 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 const char *envelopeId = 0; const char *uri = 0; const char *statusDateTime = 0; const char *status = 0; envelopeId = jResp.stringOf("envelopeId"); uri = jResp.stringOf("uri"); statusDateTime = jResp.stringOf("statusDateTime"); status = jResp.stringOf("status"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.