Sample code for 30+ languages & platforms
Android™

Docusign: Return Brand Data Associated with a User

See more DocuSign Examples

Demonstrates a call using an OAuth2 access token in combination with the account ID for which we have authorization.

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;

    //  This example assumes the Chilkat API to have been previously unlocked.
    //  See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();

    //  Implements the following CURL command:

    //  curl --request GET https://account-d.docusign.com/restapi/v2/accounts/18b4799a-xxxx-xxxx-xxxx-b5b4b8a97604/brands --header "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ"

    //  Use the following online tool to generate HTTP code from a CURL command
    //  Convert a cURL Command to HTTP Source Code

    //  Adds the "Authorization: Bearer eyJ0eXAi.....UE8Kl_V8KroQ" header.
    CkJsonObject jsonToken = new CkJsonObject();
    //  Load a previously obtained OAuth2 access token.
    success = jsonToken.LoadFile("qa_data/tokens/docusign.json");
    if (success == false) {
        Log.i(TAG, jsonToken.lastErrorText());
        return;
        }

    http.put_AuthToken(jsonToken.stringOf("access_token"));

    //  Use an account ID obtained from DocuSign Get User Account Data
    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = http.QuickGetSb("https://account-d.docusign.com/restapi/v2/accounts/18b4799a-xxxx-xxxx-xxxx-b5b4b8a97604/brands",sbResponseBody);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    CkJsonObject json = new CkJsonObject();
    json.LoadSb(sbResponseBody);
    json.put_EmitCompact(false);

    Log.i(TAG, "Response Body:");
    Log.i(TAG, json.emit());

    int respStatusCode = http.get_LastStatus();
    Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
    if (respStatusCode >= 400) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, http.lastHeader());
        Log.i(TAG, "Failed.");
        return;
        }

    //  Sample JSON response:
    //  (Sample code for parsing the JSON response is shown below)

    //  {
    //    "recipientBrandIdDefault": "sample string 1",
    //    "senderBrandIdDefault": "sample string 2",
    //    "brands": [
    //      {
    //        "brandCompany": "sample string 1",
    //        "brandId": "sample string 2",
    //        "brandName": "sample string 3",
    //        "colors": [
    //          {}
    //        ],
    //        "errorDetails": {
    //          "errorCode": "sample string 1",
    //          "message": "sample string 2"
    //        },
    //        "isOverridingCompanyName": "sample string 4",
    //        "isSendingDefault": "sample string 5",
    //        "isSigningDefault": "sample string 6",
    //        "landingPages": [
    //          {}
    //        ],
    //        "links": [
    //          {
    //            "linkType": "sample string 1",
    //            "urlOrMailTo": "sample string 2",
    //            "linkText": "sample string 3",
    //            "showLink": "sample string 4"
    //          }
    //        ],
    //        "emailContent": [
    //          {
    //            "emailContentType": "sample string 1",
    //            "content": "sample string 2",
    //            "emailToLink": "sample string 3",
    //            "linkText": "sample string 4"
    //          }
    //        ],
    //        "logos": {
    //          "primary": "sample string 1",
    //          "secondary": "sample string 2",
    //          "email": "sample string 3"
    //        },
    //        "resources": {
    //          "email": "sample string 1",
    //          "sending": "sample string 2",
    //          "signing": "sample string 3",
    //          "signingCaptive": "sample string 4"
    //        }
    //      }
    //    ]
    //  }

    //  Sample code for parsing the JSON response...
    //  Use the following online tool to generate parsing code from sample JSON:
    //  Generate Parsing Code from JSON

    String brandCompany;
    String brandId;
    String brandName;
    String errorDetailsErrorCode;
    String errorDetailsMessage;
    String isOverridingCompanyName;
    String isSendingDefault;
    String isSigningDefault;
    String logosPrimary;
    String logosSecondary;
    String logosEmail;
    String resourcesEmail;
    String resourcesSending;
    String resourcesSigning;
    String resourcesSigningCaptive;
    int j;
    int count_j;
    String linkType;
    String urlOrMailTo;
    String linkText;
    String showLink;
    String emailContentType;
    String content;
    String emailToLink;

    String recipientBrandIdDefault = json.stringOf("recipientBrandIdDefault");
    String senderBrandIdDefault = json.stringOf("senderBrandIdDefault");
    int i = 0;
    int count_i = json.SizeOfArray("brands");
    while (i < count_i) {
        json.put_I(i);
        brandCompany = json.stringOf("brands[i].brandCompany");
        brandId = json.stringOf("brands[i].brandId");
        brandName = json.stringOf("brands[i].brandName");
        errorDetailsErrorCode = json.stringOf("brands[i].errorDetails.errorCode");
        errorDetailsMessage = json.stringOf("brands[i].errorDetails.message");
        isOverridingCompanyName = json.stringOf("brands[i].isOverridingCompanyName");
        isSendingDefault = json.stringOf("brands[i].isSendingDefault");
        isSigningDefault = json.stringOf("brands[i].isSigningDefault");
        logosPrimary = json.stringOf("brands[i].logos.primary");
        logosSecondary = json.stringOf("brands[i].logos.secondary");
        logosEmail = json.stringOf("brands[i].logos.email");
        resourcesEmail = json.stringOf("brands[i].resources.email");
        resourcesSending = json.stringOf("brands[i].resources.sending");
        resourcesSigning = json.stringOf("brands[i].resources.signing");
        resourcesSigningCaptive = json.stringOf("brands[i].resources.signingCaptive");
        j = 0;
        count_j = json.SizeOfArray("brands[i].colors");
        while (j < count_j) {
            json.put_J(j);
            j = j + 1;
            }

        j = 0;
        count_j = json.SizeOfArray("brands[i].landingPages");
        while (j < count_j) {
            json.put_J(j);
            j = j + 1;
            }

        j = 0;
        count_j = json.SizeOfArray("brands[i].links");
        while (j < count_j) {
            json.put_J(j);
            linkType = json.stringOf("brands[i].links[j].linkType");
            urlOrMailTo = json.stringOf("brands[i].links[j].urlOrMailTo");
            linkText = json.stringOf("brands[i].links[j].linkText");
            showLink = json.stringOf("brands[i].links[j].showLink");
            j = j + 1;
            }

        j = 0;
        count_j = json.SizeOfArray("brands[i].emailContent");
        while (j < count_j) {
            json.put_J(j);
            emailContentType = json.stringOf("brands[i].emailContent[j].emailContentType");
            content = json.stringOf("brands[i].emailContent[j].content");
            emailToLink = json.stringOf("brands[i].emailContent[j].emailToLink");
            linkText = json.stringOf("brands[i].emailContent[j].linkText");
            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."
  }
}