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
(AutoIt) Constant Contact - Get Contact by Email AddressGet the contact details for a given email address. For more information, see https://v3.developer.constantcontact.com/api_guide/contacts_create.html#cURL1
; This example assumes the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. $oHttp = ObjCreate("Chilkat.Http") Local $bSuccess ; Implements the following CURL command: ; curl -X GET \ ; 'https://api.cc.email/v3/contacts?email=new_contact_email&status=all' \ ; -H 'Accept: application/json' \ ; -H 'Authorization: Bearer ACCESS_TOKEN' \ ; -H 'Content-Type: application/json' \ ; -H 'Postman-Token: 98980ee6-b99f-41a9-9a7a-3b5651d2ea7f' \ ; -H 'cache-control: no-cache' ; Use the following online tool to generate HTTP code from a CURL command ; Convert a cURL Command to HTTP Source Code $oHttp.SetRequestHeader "Accept","application/json" ; Adds the "Authorization: Bearer ACCESS_TOKEN" header. $oHttp.AuthToken = "ACCESS_TOKEN" $oHttp.SetRequestHeader "Postman-Token","98980ee6-b99f-41a9-9a7a-3b5651d2ea7f" $oHttp.SetRequestHeader "Content-Type","application/json" $oHttp.SetRequestHeader "cache-control","no-cache" $oSbResponseBody = ObjCreate("Chilkat.StringBuilder") $bSuccess = $oHttp.QuickGetSb("https://api.cc.email/v3/contacts?email=danipper@example.com&status=all",$oSbResponseBody) If ($bSuccess = False) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Exit EndIf $oJResp = ObjCreate("Chilkat.JsonObject") $oJResp.LoadSb($oSbResponseBody) $oJResp.EmitCompact = False ConsoleWrite("Response Body:" & @CRLF) ConsoleWrite($oJResp.Emit() & @CRLF) Local $iRespStatusCode = $oHttp.LastStatus ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF) If ($iRespStatusCode >= 400) Then ConsoleWrite("Response Header:" & @CRLF) ConsoleWrite($oHttp.LastHeader & @CRLF) ConsoleWrite("Failed." & @CRLF) Exit EndIf ; Sample JSON response: ; (Sample code for parsing the JSON response is shown below) ; { ; "contacts": [ ; { ; "contact_id": "8207fa8e-13dd-11eb-8a66-fa163e37306a", ; "email_address": { ; "address": "danipper@example.com", ; "permission_to_send": "implicit", ; "created_at": "2020-10-21T20:39:25Z", ; "updated_at": "2020-10-21T20:39:25Z", ; "opt_in_source": "Account", ; "opt_in_date": "2020-10-21T20:39:25Z", ; "confirm_status": "off" ; }, ; "first_name": "David", ; "last_name": "Nipper", ; "job_title": "Musician", ; "company_name": "Acme Corp.", ; "birthday_month": 11, ; "birthday_day": 24, ; "anniversary": "2006-11-15", ; "create_source": "Account", ; "created_at": "2020-10-21T20:39:25Z", ; "updated_at": "2020-10-21T20:39:25Z" ; } ; ] ; } ; Sample code for parsing the JSON response... ; Use the following online tool to generate parsing code from sample JSON: ; Generate Parsing Code from JSON Local $sContact_id Local $sEmail_addressAddress Local $sEmail_addressPermission_to_send Local $sEmail_addressCreated_at Local $sEmail_addressUpdated_at Local $sEmail_addressOpt_in_source Local $sEmail_addressOpt_in_date Local $sEmail_addressConfirm_status Local $sFirst_name Local $sLast_name Local $sJob_title Local $sCompany_name Local $iBirthday_month Local $iBirthday_day Local $sAnniversary Local $sCreate_source Local $sCreated_at Local $sUpdated_at Local $i = 0 Local $iCount_i = $oJResp.SizeOfArray("contacts") While $i < $iCount_i $oJResp.I = $i $sContact_id = $oJResp.StringOf("contacts[i].contact_id") $sEmail_addressAddress = $oJResp.StringOf("contacts[i].email_address.address") $sEmail_addressPermission_to_send = $oJResp.StringOf("contacts[i].email_address.permission_to_send") $sEmail_addressCreated_at = $oJResp.StringOf("contacts[i].email_address.created_at") $sEmail_addressUpdated_at = $oJResp.StringOf("contacts[i].email_address.updated_at") $sEmail_addressOpt_in_source = $oJResp.StringOf("contacts[i].email_address.opt_in_source") $sEmail_addressOpt_in_date = $oJResp.StringOf("contacts[i].email_address.opt_in_date") $sEmail_addressConfirm_status = $oJResp.StringOf("contacts[i].email_address.confirm_status") $sFirst_name = $oJResp.StringOf("contacts[i].first_name") $sLast_name = $oJResp.StringOf("contacts[i].last_name") $sJob_title = $oJResp.StringOf("contacts[i].job_title") $sCompany_name = $oJResp.StringOf("contacts[i].company_name") $iBirthday_month = $oJResp.IntOf("contacts[i].birthday_month") $iBirthday_day = $oJResp.IntOf("contacts[i].birthday_day") $sAnniversary = $oJResp.StringOf("contacts[i].anniversary") $sCreate_source = $oJResp.StringOf("contacts[i].create_source") $sCreated_at = $oJResp.StringOf("contacts[i].created_at") $sUpdated_at = $oJResp.StringOf("contacts[i].updated_at") $i = $i + 1 Wend |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.