![]() |
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
(Swift) SugarCRM: Importing Email Addresses (New Records)Demonstrates how to import a new contact with email addresses. Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://support.sugarcrm.com/Documentation/Sugar_Developer/Sugar_Developer_Guide_7.9/Integration/Migration/Importing_Records/Importing_Email_Addresses/
func chilkatTest() { var success: Bool = false // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp()! 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 let jsonRequestBody = CkoJsonObject()! jsonRequestBody.update("first_name", value: "Rob") jsonRequestBody.update("last_name", value: "Robertson") jsonRequestBody.update("email[0].email_address", value: "rob.robertson@sugar.crm") jsonRequestBody.update("email[0].primary_address", value: "1") jsonRequestBody.update("email[0].invalid_email", value: "0") jsonRequestBody.update("email[0].opt_out", value: "0") jsonRequestBody.update("email[1].email_address", value: "rob@sugar.crm") jsonRequestBody.update("email[1].primary_address", value: "0") jsonRequestBody.update("email[1].invalid_email", value: "0") jsonRequestBody.update("email[1].opt_out", value: "1") var url: String? = "http://<site url>/rest/v10/Contacts" http.setRequestHeader("OAuth-Token", value: "ACCESS_TOKEN") let resp = CkoHttpResponse()! success = http.httpJson("POST", url: url, json: jsonRequestBody, contentType: "application/json", response: resp) if success == false { print("\(http.lastErrorText!)") return } print("Response Status Code: \(resp.statusCode.intValue)") let jsonResponse = CkoJsonObject()! jsonResponse.load(resp.bodyStr) jsonResponse.emitCompact = false print("\(jsonResponse.emit()!)") if resp.statusCode.intValue >= 300 { print("Failed.") return } } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.