Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) 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/
LOCAL loHttp LOCAL lnSuccess LOCAL loJsonToken LOCAL lcUrl LOCAL loBd LOCAL lnRespStatusCode LOCAL loMime LOCAL lcFilename LOCAL loSbPath * 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') loHttp = CreateObject('Chilkat.Http') * Implements the following HTTP request: * GET /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents/1 * Adds the "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" header. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject') loJsonToken = CreateObject('Chilkat.JsonObject') * Load a previously obtained OAuth2 access token. lnSuccess = loJsonToken.LoadFile("qa_data/tokens/docusign.json") IF (lnSuccess = 0) THEN ? loJsonToken.LastErrorText RELEASE loHttp RELEASE loJsonToken CANCEL ENDIF loHttp.AuthToken = loJsonToken.StringOf("access_token") * Use your account ID and a valid envelopeId here: loHttp.SetUrlVar("accountId","7f3f65ed-5e87-418d-94c1-92499ddc8252") loHttp.SetUrlVar("envelopeId","90d7e40a-b4bd-4ccd-bf38-c80e37954a13") lcUrl = "https://demo.docusign.net/restapi/v2.1/accounts/{$accountId}/envelopes/{$envelopeId}/documents/1" * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.BinData') loBd = CreateObject('Chilkat.BinData') lnSuccess = loHttp.DownloadBd(lcUrl,loBd) IF (lnSuccess = 0) THEN ? loHttp.LastErrorText RELEASE loHttp RELEASE loJsonToken RELEASE loBd CANCEL ENDIF lnRespStatusCode = loHttp.LastStatus ? "Response Status Code = " + STR(lnRespStatusCode) IF (lnRespStatusCode <> 200) THEN ? "Response Header:" ? loHttp.LastResponseHeader * The response body contains an error message. ? loBd.GetString("utf-8") ? "Failed." RELEASE loHttp RELEASE loJsonToken RELEASE loBd CANCEL ENDIF * The response indicated success. * Get the filename from the Content-Disposition header and save to a file. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Mime') loMime = CreateObject('Chilkat.Mime') loMime.LoadMime(loHttp.LastResponseHeader) lcFilename = loMime.GetHeaderFieldAttribute("Content-Disposition","filename") ? "filename = " + lcFilename * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbPath = CreateObject('Chilkat.StringBuilder') loSbPath.Append("C:/aaworkarea/") loSbPath.Append(lcFilename) lnSuccess = loBd.WriteFile(loSbPath.GetAsString()) IF (lnSuccess = 0) THEN ? "Failed to save to output file." ELSE ? "Wrote " + loSbPath.GetAsString() ENDIF RELEASE loHttp RELEASE loJsonToken RELEASE loBd RELEASE loMime RELEASE loSbPath |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.