Sample code for 30+ languages & platforms
Pascal (Lazarus/Delphi)

SugarCRM: Importing Email Addresses (New Records)

See more SugarCRM Examples

Demonstrates how to import a new contact with email addresses.

Chilkat Pascal (Lazarus/Delphi) Downloads

Pascal (Lazarus/Delphi)
program ChilkatDemo;

// Demonstrates using the Chilkat Pascal wrapper via the C bridge DLL.
// Builds as a console application under Lazarus (FPC) or Delphi.

{$IFDEF FPC}
  {$MODE DELPHI}
{$ENDIF}
{$APPTYPE CONSOLE}

uses
  {$IFDEF UNIX}
  cthreads,
  {$ENDIF}
  SysUtils,
  CkDllLoader,
  Chilkat.Http,
  Chilkat.HttpResponse,
  Chilkat.JsonObject;

// ---------------------------------------------------------------------------

procedure RunDemo;
var
  success: Boolean;
  http: THttp;
  jsonRequestBody: TJsonObject;
  url: string;
  resp: THttpResponse;
  jsonResponse: TJsonObject;

begin
  success := False;

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

  http := THttp.Create;

  http.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

  jsonRequestBody := TJsonObject.Create;
  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');

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

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

  resp := THttpResponse.Create;
  success := http.HttpJson('POST',url,jsonRequestBody,'application/json',resp);
  if (success = False) then
    begin
      WriteLn(http.LastErrorText);
      Exit;
    end;

  WriteLn('Response Status Code: ' + resp.StatusCode);

  jsonResponse := TJsonObject.Create;
  jsonResponse.Load(resp.BodyStr);
  jsonResponse.EmitCompact := False;
  WriteLn(jsonResponse.Emit());

  if (resp.StatusCode >= 300) then
    begin
      WriteLn('Failed.');
      Exit;
    end;


  http.Free;
  jsonRequestBody.Free;
  resp.Free;
  jsonResponse.Free;

end;

// ---------------------------------------------------------------------------

begin

  try
    RunDemo;
  except
    on E: Exception do
      WriteLn('Unhandled exception: ', E.ClassName, ': ', E.Message);
  end;

  WriteLn;
  {$IFDEF MSWINDOWS}
  WriteLn('Press Enter to exit...');
  ReadLn;
  {$ENDIF}
end.