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 FoldersSee more DocuSign ExamplesRetrieves a list of the folders for the account, including the folder hierarchy. You can specify type kinds of folders to return with the include query parameter. For more information, see https://developers.docusign.com/docs/esign-rest-api/reference/folders/folders/list/
#include <C_CkHttpW.h> #include <C_CkJsonObjectW.h> #include <C_CkStringBuilderW.h> void ChilkatSample(void) { HCkHttpW http; BOOL success; HCkJsonObjectW jsonToken; HCkStringBuilderW sbResponseBody; HCkJsonObjectW jResp; int respStatusCode; const wchar_t *name; const wchar_t *v_type; const wchar_t *ownerUserName; const wchar_t *ownerUserId; const wchar_t *ownerEmail; const wchar_t *folderId; const wchar_t *uri; const wchar_t *itemCount; const wchar_t *subFolderCount; const wchar_t *hasSubFolders; const wchar_t *resultSetSize; const wchar_t *startPosition; const wchar_t *endPosition; const wchar_t *totalSetSize; int i; int count_i; // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttpW_Create(); // Implements the following HTTP request: // GET /restapi/v2.1/accounts/{accountId}/folders // Adds the "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" header. jsonToken = CkJsonObjectW_Create(); // Load a previously obtained OAuth2 access token. success = CkJsonObjectW_LoadFile(jsonToken,L"qa_data/tokens/docusign.json"); if (success == FALSE) { wprintf(L"%s\n",CkJsonObjectW_lastErrorText(jsonToken)); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); return; } CkHttpW_putAuthToken(http,CkJsonObjectW_stringOf(jsonToken,L"access_token")); // Use your account ID here: CkHttpW_SetUrlVar(http,L"accountId",L"7f3f65ed-5e87-418d-94c1-92499ddc8252"); sbResponseBody = CkStringBuilderW_Create(); success = CkHttpW_QuickGetSb(http,L"https://demo.docusign.net/restapi/v2.1/accounts/{$accountId}/folders",sbResponseBody); if (success == FALSE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); CkStringBuilderW_Dispose(sbResponseBody); return; } jResp = CkJsonObjectW_Create(); CkJsonObjectW_LoadSb(jResp,sbResponseBody); CkJsonObjectW_putEmitCompact(jResp,FALSE); wprintf(L"Response Body:\n"); wprintf(L"%s\n",CkJsonObjectW_emit(jResp)); respStatusCode = CkHttpW_getLastStatus(http); wprintf(L"Response Status Code = %d\n",respStatusCode); if (respStatusCode >= 400) { wprintf(L"Response Header:\n"); wprintf(L"%s\n",CkHttpW_lastHeader(http)); wprintf(L"Failed.\n"); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); CkStringBuilderW_Dispose(sbResponseBody); CkJsonObjectW_Dispose(jResp); return; } // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "resultSetSize": "4", // "startPosition": "0", // "endPosition": "3", // "totalSetSize": "4", // "folders": [ // { // "name": "Draft", // "type": "draft", // "owner": { // "userName": "Joe Sample", // "userId": "14602117-2430-4582-8a49-ba8766302272", // "email": "admin@chilkatsoft.com" // }, // "folderId": "f0bc5174-610d-4d80-80d7-91037843ccdb", // "uri": "/folders/f0bc5174-610d-4d80-80d7-91037843ccdb", // "itemCount": "0", // "subFolderCount": "0", // "hasSubFolders": "false" // }, // { // "name": "Inbox", // "type": "inbox", // "owner": { // "userName": "Joe Sample", // "userId": "14602117-2430-4582-8a49-ba8766302272", // "email": "admin@chilkatsoft.com" // }, // "folderId": "06c97346-f7b4-46fd-a204-038287d655ec", // "uri": "/folders/06c97346-f7b4-46fd-a204-038287d655ec", // "itemCount": "1", // "subFolderCount": "0", // "hasSubFolders": "false" // }, // { // "name": "Deleted Items", // "type": "recyclebin", // "owner": { // "userName": "Joe Sample", // "userId": "14602117-2430-4582-8a49-ba8766302272", // "email": "admin@chilkatsoft.com" // }, // "folderId": "6df0919e-b152-49fc-a4c9-9b430a29d4f5", // "uri": "/folders/6df0919e-b152-49fc-a4c9-9b430a29d4f5", // "itemCount": "0", // "subFolderCount": "0", // "hasSubFolders": "false" // }, // { // "name": "Sent Items", // "type": "sentitems", // "owner": { // "userName": "Joe Sample", // "userId": "14602117-2430-4582-8a49-ba8766302272", // "email": "admin@chilkatsoft.com" // }, // "folderId": "456f3c76-b265-4453-a024-c39b1a5cb387", // "uri": "/folders/456f3c76-b265-4453-a024-c39b1a5cb387", // "itemCount": "1", // "subFolderCount": "0", // "hasSubFolders": "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. resultSetSize = CkJsonObjectW_stringOf(jResp,L"resultSetSize"); startPosition = CkJsonObjectW_stringOf(jResp,L"startPosition"); endPosition = CkJsonObjectW_stringOf(jResp,L"endPosition"); totalSetSize = CkJsonObjectW_stringOf(jResp,L"totalSetSize"); i = 0; count_i = CkJsonObjectW_SizeOfArray(jResp,L"folders"); while (i < count_i) { CkJsonObjectW_putI(jResp,i); name = CkJsonObjectW_stringOf(jResp,L"folders[i].name"); v_type = CkJsonObjectW_stringOf(jResp,L"folders[i].type"); ownerUserName = CkJsonObjectW_stringOf(jResp,L"folders[i].owner.userName"); ownerUserId = CkJsonObjectW_stringOf(jResp,L"folders[i].owner.userId"); ownerEmail = CkJsonObjectW_stringOf(jResp,L"folders[i].owner.email"); folderId = CkJsonObjectW_stringOf(jResp,L"folders[i].folderId"); uri = CkJsonObjectW_stringOf(jResp,L"folders[i].uri"); itemCount = CkJsonObjectW_stringOf(jResp,L"folders[i].itemCount"); subFolderCount = CkJsonObjectW_stringOf(jResp,L"folders[i].subFolderCount"); hasSubFolders = CkJsonObjectW_stringOf(jResp,L"folders[i].hasSubFolders"); i = i + 1; } CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonToken); CkStringBuilderW_Dispose(sbResponseBody); CkJsonObjectW_Dispose(jResp); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.