Sample code for 30+ languages & platforms
Android™

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 Android™ Downloads

Android™
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    boolean success = false;

    CkHttp http = new CkHttp();

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

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

    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpParams("GET","https://accounting-clients.api.datev.de/platform-sandbox/v2/clients",queryParams,resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, String.valueOf(resp.get_StatusCode()));
    Log.i(TAG, resp.bodyStr());

    CkJsonArray jarr = new CkJsonArray();

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

    CkJsonObject json;
    int client_number;
    int consultant_number;
    String id;
    String name;
    int j;
    int count_j;
    int k;
    int count_k;
    String strVal;

    int i = 0;
    int count_i = jarr.get_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.put_J(j);
            name = json.stringOf("services[j].name");
            k = 0;
            count_k = json.SizeOfArray("services[j].scopes");
            while (k < count_k) {
                json.put_K(k);
                strVal = json.stringOf("services[j].scopes[k]");
                k = k + 1;
                }

            j = j + 1;
            }

        i = i + 1;
        }


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}