![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Node.js) Datev - Get a List of ClientsSee more Datev ExamplesDemonstrates how to get a list of clients in the accounting:clients Datev API.Note: This example requires Chilkat v10.1.3 or greater. For more information, see https://developer.datev.de/en/product-detail/accounting-clients/2.0/reference/reference-api-overview/accountingclients/clients-get
var os = require('os'); if (os.platform() == 'win32') { var chilkat = require('@chilkat/ck-node23-win64'); } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node23-linux-arm'); } else if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node23-linux-arm64'); } else { var chilkat = require('@chilkat/ck-node23-linux-x64'); } } else if (os.platform() == 'darwin') { var chilkat = require('@chilkat/ck-node23-mac-universal'); } function chilkatExample() { var http = new chilkat.Http(); var success; // Implements the following CURL command: // curl --request GET \ // --url "https://accounting-clients.api.datev.de/platform/v2/clients?filter=REPLACE_THIS_VALUE&skip=REPLACE_THIS_VALUE&top=REPLACE_THIS_VALUE" \ // --header "Authorization: Bearer REPLACE_BEARER_TOKEN" \ // --header "X-Datev-Client-ID: clientId" \ // --header "accept: application/json;charset=utf-8" // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code var queryParams = new chilkat.JsonObject(); // ignore = queryParams.UpdateString("filter","REPLACE_THIS_VALUE"); // ignore = queryParams.UpdateString("skip","REPLACE_THIS_VALUE"); // ignore = queryParams.UpdateString("top","REPLACE_THIS_VALUE"); // Adds the "Authorization: Bearer REPLACE_BEARER_TOKEN" header. http.AuthToken = "REPLACE_BEARER_TOKEN"; http.SetRequestHeader("accept","application/json;charset=utf-8"); http.SetRequestHeader("X-Datev-Client-ID","DATEV_CLIENT_ID"); // resp: HttpResponse var resp = http.QuickRequestParams("GET","https://accounting-clients.api.datev.de/platform-sandbox/v2/clients",queryParams); if (http.LastMethodSuccess == false) { console.log(http.LastErrorText); return; } console.log(resp.StatusCode); console.log(resp.BodyStr); var jarr = new chilkat.JsonArray(); // Insert code here to load the above JSON array into the jarr object. jarr.Load(resp.BodyStr); // json: JsonObject var json; var client_number; var consultant_number; var id; var name; var j; var count_j; var k; var count_k; var strVal; var i = 0; var count_i = jarr.Size; while (i < count_i) { json = jarr.ObjectAt(i); client_number = json.IntOf("client_number"); consultant_number = json.IntOf("consultant_number"); id = json.StringOf("id"); name = json.StringOf("name"); j = 0; count_j = json.SizeOfArray("services"); while (j < count_j) { json.J = j; name = json.StringOf("services[j].name"); k = 0; count_k = json.SizeOfArray("services[j].scopes"); while (k < count_k) { json.K = k; strVal = json.StringOf("services[j].scopes[k]"); k = k+1; } j = j+1; } i = i+1; } } chilkatExample(); |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.