Chilkat • HOME • Android™ • AutoIt • C • C# • C++ • Chilkat2-Python • CkPython • Classic ASP • DataFlex • Delphi DLL • Go • Java • Node.js • Objective-C • PHP Extension • Perl • PowerBuilder • PowerShell • PureBasic • Ruby • SQL Server • Swift • Tcl • Unicode C • Unicode C++ • VB.NET • VBScript • Visual Basic 6.0 • Visual FoxPro • Xojo Plugin
(PHP ActiveX) SugarCRM: Importing Email Addresses (New Records)Demonstrates how to import a new contact with email addresses. For more information, see https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_7.9/Integration/Migration/Importing_Records/Importing_Email_Addresses/
<?php // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.Http') $http = new COM("Chilkat.Http"); $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 // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject') $jsonRequestBody = new COM("Chilkat.JsonObject"); $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 is a Chilkat.HttpResponse $resp = $http->PText('POST',$url,$jsonRequestBody->emit(),'utf-8','application/json',0,0); if ($http->LastMethodSuccess != 1) { print $http->LastErrorText . "\n"; exit; } print 'Response Status Code: ' . $resp->StatusCode . "\n"; // For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.JsonObject') $jsonResponse = new COM("Chilkat.JsonObject"); $jsonResponse->Load($resp->BodyStr); $jsonResponse->EmitCompact = 0; print $jsonResponse->emit() . "\n"; if ($resp->StatusCode >= 300) { print 'Failed.' . "\n"; exit; } ?> |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.