Sample code for 30+ languages & platforms
Android™

SugarCRM: Importing Email Addresses (New Records)

See more SugarCRM Examples

Demonstrates how to import a new contact with email addresses.

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 requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkHttp http = new CkHttp();

    http.put_Accept("application/json");

    // The following JSON is sent in the request body:

    // {
    //   "first_name": "Rob",
    //   "last_name": "Robertson",
    //   "email": [
    //     {
    //       "email_address": "rob.robertson@sugar.crm",
    //       "primary_address": "1",
    //       "invalid_email": "0",
    //       "opt_out": "0"
    //     },
    //     {
    //       "email_address": "rob@sugar.crm",
    //       "primary_address": "0",
    //       "invalid_email": "0",
    //       "opt_out": "1"
    //     }
    //   ]
    // }

    // Use this online tool to generate the code from sample JSON: 
    // Generate Code to Create JSON

    CkJsonObject jsonRequestBody = new CkJsonObject();
    jsonRequestBody.UpdateString("first_name","Rob");
    jsonRequestBody.UpdateString("last_name","Robertson");
    jsonRequestBody.UpdateString("email[0].email_address","rob.robertson@sugar.crm");
    jsonRequestBody.UpdateString("email[0].primary_address","1");
    jsonRequestBody.UpdateString("email[0].invalid_email","0");
    jsonRequestBody.UpdateString("email[0].opt_out","0");
    jsonRequestBody.UpdateString("email[1].email_address","rob@sugar.crm");
    jsonRequestBody.UpdateString("email[1].primary_address","0");
    jsonRequestBody.UpdateString("email[1].invalid_email","0");
    jsonRequestBody.UpdateString("email[1].opt_out","1");

    String url = "http://<site url>/rest/v10/Contacts";

    http.SetRequestHeader("OAuth-Token","ACCESS_TOKEN");

    CkHttpResponse resp = new CkHttpResponse();
    success = http.HttpJson("POST",url,jsonRequestBody,"application/json",resp);
    if (success == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, "Response Status Code: " + String.valueOf(resp.get_StatusCode()));

    CkJsonObject jsonResponse = new CkJsonObject();
    jsonResponse.Load(resp.bodyStr());
    jsonResponse.put_EmitCompact(false);
    Log.i(TAG, jsonResponse.emit());

    if (resp.get_StatusCode() >= 300) {
        Log.i(TAG, "Failed.");
        return;
        }


  }

  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."
  }
}