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
(Unicode C++) DocuSign List Envelope DocumentsSee more DocuSign ExamplesRetrieve a list of all documents within a specific envelope. For more information, see https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopedocuments/list/
#include <CkHttpW.h> #include <CkJsonObjectW.h> #include <CkStringBuilderW.h> void ChilkatSample(void) { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttpW http; bool success; // Implements the following HTTP request: // GET /restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/documents // Adds the "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" header. CkJsonObjectW jsonToken; // Load a previously obtained OAuth2 access token. success = jsonToken.LoadFile(L"qa_data/tokens/docusign.json"); if (success == false) { wprintf(L"%s\n",jsonToken.lastErrorText()); return; } http.put_AuthToken(jsonToken.stringOf(L"access_token")); // Use your account ID and a valid envelopeId here: http.SetUrlVar(L"accountId",L"7f3f65ed-5e87-418d-94c1-92499ddc8252"); http.SetUrlVar(L"envelopeId",L"90d7e40a-b4bd-4ccd-bf38-c80e37954a13"); CkStringBuilderW sbResponseBody; success = http.QuickGetSb(L"https://demo.docusign.net/restapi/v2.1/accounts/{$accountId}/envelopes/{$envelopeId}/documents",sbResponseBody); if (success == false) { wprintf(L"%s\n",http.lastErrorText()); return; } CkJsonObjectW jResp; jResp.LoadSb(sbResponseBody); jResp.put_EmitCompact(false); wprintf(L"Response Body:\n"); wprintf(L"%s\n",jResp.emit()); int respStatusCode = http.get_LastStatus(); wprintf(L"Response Status Code = %d\n",respStatusCode); if (respStatusCode >= 400) { wprintf(L"Response Header:\n"); wprintf(L"%s\n",http.lastHeader()); wprintf(L"Failed.\n"); return; } // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "envelopeId": "90d7e40a-b4bd-4ccd-bf38-c80e37954a13", // "envelopeDocuments": [ // { // "documentId": "1", // "documentIdGuid": "ca1d3cc6-9bc3-48d6-a5d8-a85d9acdcde1", // "name": "helloWorld.pdf", // "type": "content", // "uri": "/envelopes/90d7e40a-b4bd-4ccd-bf38-c80e37954a13/documents/1", // "order": "1", // "pages": [ // { // "pageId": "fbf93a36-6b60-484d-94bd-ee3c08c0a546", // "sequence": "1", // "height": "842", // "width": "595", // "dpi": "72" // } // ], // "availableDocumentTypes": [ // { // "type": "electronic", // "isDefault": "true" // } // ], // "display": "inline", // "includeInDownload": "true", // "signerMustAcknowledge": "no_interaction", // "templateRequired": "false", // "authoritativeCopy": "false" // }, // { // "documentId": "certificate", // "documentIdGuid": "7479a5de-8d91-44a2-bc33-b76a9ba0f6e2", // "name": "Summary", // "type": "summary", // "uri": "/envelopes/90d7e40a-b4bd-4ccd-bf38-c80e37954a13/documents/certificate", // "order": "999", // "availableDocumentTypes": [ // { // "type": "electronic", // "isDefault": "true" // } // ], // "display": "inline", // "includeInDownload": "true", // "signerMustAcknowledge": "no_interaction", // "templateRequired": "false", // "authoritativeCopy": "false" // } // ] // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat. // See this example explaining how this memory should be used: const char * functions. const wchar_t *documentId = 0; const wchar_t *documentIdGuid = 0; const wchar_t *name = 0; const wchar_t *v_type = 0; const wchar_t *uri = 0; const wchar_t *order = 0; const wchar_t *display = 0; const wchar_t *includeInDownload = 0; const wchar_t *signerMustAcknowledge = 0; const wchar_t *templateRequired = 0; const wchar_t *authoritativeCopy = 0; int j; int count_j; const wchar_t *pageId = 0; const wchar_t *sequence = 0; const wchar_t *height = 0; const wchar_t *width = 0; const wchar_t *dpi = 0; const wchar_t *isDefault = 0; const wchar_t *envelopeId = jResp.stringOf(L"envelopeId"); int i = 0; int count_i = jResp.SizeOfArray(L"envelopeDocuments"); while (i < count_i) { jResp.put_I(i); documentId = jResp.stringOf(L"envelopeDocuments[i].documentId"); documentIdGuid = jResp.stringOf(L"envelopeDocuments[i].documentIdGuid"); name = jResp.stringOf(L"envelopeDocuments[i].name"); v_type = jResp.stringOf(L"envelopeDocuments[i].type"); uri = jResp.stringOf(L"envelopeDocuments[i].uri"); order = jResp.stringOf(L"envelopeDocuments[i].order"); display = jResp.stringOf(L"envelopeDocuments[i].display"); includeInDownload = jResp.stringOf(L"envelopeDocuments[i].includeInDownload"); signerMustAcknowledge = jResp.stringOf(L"envelopeDocuments[i].signerMustAcknowledge"); templateRequired = jResp.stringOf(L"envelopeDocuments[i].templateRequired"); authoritativeCopy = jResp.stringOf(L"envelopeDocuments[i].authoritativeCopy"); j = 0; count_j = jResp.SizeOfArray(L"envelopeDocuments[i].pages"); while (j < count_j) { jResp.put_J(j); pageId = jResp.stringOf(L"envelopeDocuments[i].pages[j].pageId"); sequence = jResp.stringOf(L"envelopeDocuments[i].pages[j].sequence"); height = jResp.stringOf(L"envelopeDocuments[i].pages[j].height"); width = jResp.stringOf(L"envelopeDocuments[i].pages[j].width"); dpi = jResp.stringOf(L"envelopeDocuments[i].pages[j].dpi"); j = j + 1; } j = 0; count_j = jResp.SizeOfArray(L"envelopeDocuments[i].availableDocumentTypes"); while (j < count_j) { jResp.put_J(j); v_type = jResp.stringOf(L"envelopeDocuments[i].availableDocumentTypes[j].type"); isDefault = jResp.stringOf(L"envelopeDocuments[i].availableDocumentTypes[j].isDefault"); j = j + 1; } i = i + 1; } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.