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 Download Envelope Document (PDF)See more DocuSign ExamplesRetrieves the specified document from the envelope. The response body of this method is the PDF file as a byte stream. You can get the file name and document ID from the response's Content-Disposition header. For more information, see https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopedocuments/get/
#include <CkHttp.h> #include <CkJsonObject.h> #include <CkBinData.h> #include <CkMime.h> #include <CkStringBuilder.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 HTTP request: // GET /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents/1 // Adds the "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" header. CkJsonObject jsonToken; // Load a previously obtained OAuth2 access token. success = jsonToken.LoadFile("qa_data/tokens/docusign.json"); if (success == false) { strOut.append(jsonToken.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } http.put_AuthToken(jsonToken.stringOf("access_token")); // Use your account ID and a valid envelopeId here: http.SetUrlVar("accountId","7f3f65ed-5e87-418d-94c1-92499ddc8252"); http.SetUrlVar("envelopeId","90d7e40a-b4bd-4ccd-bf38-c80e37954a13"); const char *url = "https://demo.docusign.net/restapi/v2.1/accounts/{$accountId}/envelopes/{$envelopeId}/documents/1"; CkBinData bd; success = http.DownloadBd(url,bd); if (success == false) { strOut.append(http.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } int respStatusCode = http.get_LastStatus(); strOut.append("Response Status Code = "); strOut.appendInt(respStatusCode); strOut.append("\r\n"); if (respStatusCode != 200) { strOut.append("Response Header:"); strOut.append("\r\n"); strOut.append(http.lastResponseHeader()); strOut.append("\r\n"); // The response body contains an error message. strOut.append(bd.getString("utf-8")); strOut.append("\r\n"); strOut.append("Failed."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // The response indicated success. // Get the filename from the Content-Disposition header and save to a file. CkMime mime; mime.LoadMime(http.lastResponseHeader()); const char *filename = mime.getHeaderFieldAttribute("Content-Disposition","filename"); strOut.append("filename = "); strOut.append(filename); strOut.append("\r\n"); CkStringBuilder sbPath; sbPath.Append("C:/aaworkarea/"); sbPath.Append(filename); success = bd.WriteFile(sbPath.getAsString()); if (success == false) { strOut.append("Failed to save to output file."); strOut.append("\r\n"); } else { strOut.append("Wrote "); strOut.append(sbPath.getAsString()); strOut.append("\r\n"); } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.