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

SugarCRM: Importing Email Addresses (New Records)

See more SugarCRM Examples

Demonstrates how to import a new contact with email addresses.

Chilkat Unicode C++ Downloads

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

void ChilkatSample(void)
    {
    bool success = false;

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

    CkHttpW http;

    http.put_Accept(L"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

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

    const wchar_t *url = L"http://<site url>/rest/v10/Contacts";

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

    CkHttpResponseW resp;
    success = http.HttpJson(L"POST",url,jsonRequestBody,L"application/json",resp);
    if (success == false) {
        wprintf(L"%s\n",http.lastErrorText());
        return;
    }

    wprintf(L"Response Status Code: %d\n",resp.get_StatusCode());

    CkJsonObjectW jsonResponse;
    jsonResponse.Load(resp.bodyStr());
    jsonResponse.put_EmitCompact(false);
    wprintf(L"%s\n",jsonResponse.emit());

    if (resp.get_StatusCode() >= 300) {
        wprintf(L"Failed.\n");
        return;
    }
    }