Sample code for 30+ languages & platforms
VBScript

SugarCRM: Importing Email Addresses (New Records)

See more SugarCRM Examples

Demonstrates how to import a new contact with email addresses.

Chilkat VBScript Downloads

VBScript
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)

success = 0

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

set http = CreateObject("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

set jsonRequestBody = CreateObject("Chilkat.JsonObject")
success = jsonRequestBody.UpdateString("first_name","Rob")
success = jsonRequestBody.UpdateString("last_name","Robertson")
success = jsonRequestBody.UpdateString("email[0].email_address","rob.robertson@sugar.crm")
success = jsonRequestBody.UpdateString("email[0].primary_address","1")
success = jsonRequestBody.UpdateString("email[0].invalid_email","0")
success = jsonRequestBody.UpdateString("email[0].opt_out","0")
success = jsonRequestBody.UpdateString("email[1].email_address","rob@sugar.crm")
success = jsonRequestBody.UpdateString("email[1].primary_address","0")
success = jsonRequestBody.UpdateString("email[1].invalid_email","0")
success = jsonRequestBody.UpdateString("email[1].opt_out","1")

url = "http://<site url>/rest/v10/Contacts"

http.SetRequestHeader "OAuth-Token","ACCESS_TOKEN"

set resp = CreateObject("Chilkat.HttpResponse")
success = http.HttpJson("POST",url,jsonRequestBody,"application/json",resp)
If (success = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine("Response Status Code: " & resp.StatusCode)

set jsonResponse = CreateObject("Chilkat.JsonObject")
success = jsonResponse.Load(resp.BodyStr)
jsonResponse.EmitCompact = 0
outFile.WriteLine(jsonResponse.Emit())

If (resp.StatusCode >= 300) Then
    outFile.WriteLine("Failed.")
    WScript.Quit
End If


outFile.Close