Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) 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/
#include <C_CkHttpW.h> #include <C_CkJsonObjectW.h> #include <C_CkHttpResponseW.h> void ChilkatSample(void) { HCkHttpW http; HCkJsonObjectW jsonRequestBody; const wchar_t *url; HCkHttpResponseW resp; HCkJsonObjectW jsonResponse; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttpW_Create(); CkHttpW_putAccept(http,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 jsonRequestBody = CkJsonObjectW_Create(); CkJsonObjectW_UpdateString(jsonRequestBody,L"first_name",L"Rob"); CkJsonObjectW_UpdateString(jsonRequestBody,L"last_name",L"Robertson"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[0].email_address",L"rob.robertson@sugar.crm"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[0].primary_address",L"1"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[0].invalid_email",L"0"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[0].opt_out",L"0"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[1].email_address",L"rob@sugar.crm"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[1].primary_address",L"0"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[1].invalid_email",L"0"); CkJsonObjectW_UpdateString(jsonRequestBody,L"email[1].opt_out",L"1"); url = L"http://<site url>/rest/v10/Contacts"; CkHttpW_SetRequestHeader(http,L"OAuth-Token",L"ACCESS_TOKEN"); resp = CkHttpW_PText(http,L"POST",url,CkJsonObjectW_emit(jsonRequestBody),L"utf-8",L"application/json",FALSE,FALSE); if (CkHttpW_getLastMethodSuccess(http) != TRUE) { wprintf(L"%s\n",CkHttpW_lastErrorText(http)); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonRequestBody); return; } wprintf(L"Response Status Code: %d\n",CkHttpResponseW_getStatusCode(resp)); jsonResponse = CkJsonObjectW_Create(); CkJsonObjectW_Load(jsonResponse,CkHttpResponseW_bodyStr(resp)); CkJsonObjectW_putEmitCompact(jsonResponse,FALSE); wprintf(L"%s\n",CkJsonObjectW_emit(jsonResponse)); if (CkHttpResponseW_getStatusCode(resp) >= 300) { wprintf(L"Failed.\n"); CkHttpResponseW_Dispose(resp); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonRequestBody); CkJsonObjectW_Dispose(jsonResponse); return; } CkHttpResponseW_Dispose(resp); CkHttpW_Dispose(http); CkJsonObjectW_Dispose(jsonRequestBody); CkJsonObjectW_Dispose(jsonResponse); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.