Sample code for 30+ languages & platforms
Unicode C++

Datev - Get a List of Clients

See more Datev Examples

Demonstrates how to get a list of clients in the accounting:clients Datev API.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
#include <CkJsonArrayW.h>

void ChilkatSample(void)
    {
    bool success = false;

    CkHttpW http;

    // 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

    CkJsonObjectW queryParams;
    // 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.put_AuthToken(L"REPLACE_BEARER_TOKEN");
    http.SetRequestHeader(L"accept",L"application/json;charset=utf-8");
    http.SetRequestHeader(L"X-Datev-Client-ID",L"DATEV_CLIENT_ID");

    CkHttpResponseW resp;
    success = http.HttpParams(L"GET",L"https://accounting-clients.api.datev.de/platform-sandbox/v2/clients",queryParams,resp);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"%d\n",resp.get_StatusCode());
    wprintf(L"%s\n",resp.bodyStr());

    CkJsonArrayW jarr;

    // Insert code here to load the above JSON array into the jarr object.
    jarr.Load(resp.bodyStr());

    CkJsonObjectW *json = 0;
    int client_number;
    int consultant_number;
    const wchar_t *id = 0;
    const wchar_t *name = 0;
    int j;
    int count_j;
    int k;
    int count_k;
    const wchar_t *strVal = 0;

    int i = 0;
    int count_i = jarr.get_Size();
    while (i < count_i) {
        json = jarr.ObjectAt(i);
        client_number = json->IntOf(L"client_number");
        consultant_number = json->IntOf(L"consultant_number");
        id = json->stringOf(L"id");
        name = json->stringOf(L"name");
        j = 0;
        count_j = json->SizeOfArray(L"services");
        while (j < count_j) {
            json->put_J(j);
            name = json->stringOf(L"services[j].name");
            k = 0;
            count_k = json->SizeOfArray(L"services[j].scopes");
            while (k < count_k) {
                json->put_K(k);
                strVal = json->stringOf(L"services[j].scopes[k]");
                k = k + 1;
            }

            j = j + 1;
        }

        delete json;
        i = i + 1;
    }
    }