Sample code for 30+ languages & platforms
Xbase++

Constant Contact - Get Contact by Email Address

See more Constant Contact Examples

Get the contact details for a given email address.

Chilkat Xbase++ Downloads

Xbase++
LOCAL nSuccess
LOCAL oHttp
LOCAL oSbResponseBody
LOCAL oJResp
LOCAL nRespStatusCode
LOCAL cContact_id
LOCAL cEmail_addressAddress
LOCAL cEmail_addressPermission_to_send
LOCAL cEmail_addressCreated_at
LOCAL cEmail_addressUpdated_at
LOCAL cEmail_addressOpt_in_source
LOCAL cEmail_addressOpt_in_date
LOCAL cEmail_addressConfirm_status
LOCAL cFirst_name
LOCAL cLast_name
LOCAL cJob_title
LOCAL cCompany_name
LOCAL nBirthday_month
LOCAL nBirthday_day
LOCAL cAnniversary
LOCAL cCreate_source
LOCAL cCreated_at
LOCAL cUpdated_at
LOCAL i
LOCAL nCount_i

nSuccess := 0

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

oHttp := CreateObject("Chilkat.Http")

//  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 := CreateObject("Chilkat.StringBuilder")
nSuccess := oHttp:QuickGetSb("https://api.cc.email/v3/contacts?email=danipper@example.com&status=all", oSbResponseBody)
IF (nSuccess == 0)
    ? oHttp:LastErrorText
    oHttp:destroy()
    oSbResponseBody:destroy()
    RETURN
ENDIF

oJResp := CreateObject("Chilkat.JsonObject")
oJResp:LoadSb(oSbResponseBody)
oJResp:EmitCompact := 0

? "Response Body:"
? oJResp:Emit()

nRespStatusCode := oHttp:LastStatus
? "Response Status Code = " + Str(nRespStatusCode)
IF (nRespStatusCode >= 400)
    ? "Response Header:"
    ? oHttp:LastHeader
    ? "Failed."
    oHttp:destroy()
    oSbResponseBody:destroy()
    oJResp:destroy()
    RETURN
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

i := 0
nCount_i := oJResp:SizeOfArray("contacts")
DO WHILE i < nCount_i
    oJResp:I := i
    cContact_id := oJResp:StringOf("contacts[i].contact_id")
    cEmail_addressAddress := oJResp:StringOf("contacts[i].email_address.address")
    cEmail_addressPermission_to_send := oJResp:StringOf("contacts[i].email_address.permission_to_send")
    cEmail_addressCreated_at := oJResp:StringOf("contacts[i].email_address.created_at")
    cEmail_addressUpdated_at := oJResp:StringOf("contacts[i].email_address.updated_at")
    cEmail_addressOpt_in_source := oJResp:StringOf("contacts[i].email_address.opt_in_source")
    cEmail_addressOpt_in_date := oJResp:StringOf("contacts[i].email_address.opt_in_date")
    cEmail_addressConfirm_status := oJResp:StringOf("contacts[i].email_address.confirm_status")
    cFirst_name := oJResp:StringOf("contacts[i].first_name")
    cLast_name := oJResp:StringOf("contacts[i].last_name")
    cJob_title := oJResp:StringOf("contacts[i].job_title")
    cCompany_name := oJResp:StringOf("contacts[i].company_name")
    nBirthday_month := oJResp:IntOf("contacts[i].birthday_month")
    nBirthday_day := oJResp:IntOf("contacts[i].birthday_day")
    cAnniversary := oJResp:StringOf("contacts[i].anniversary")
    cCreate_source := oJResp:StringOf("contacts[i].create_source")
    cCreated_at := oJResp:StringOf("contacts[i].created_at")
    cUpdated_at := oJResp:StringOf("contacts[i].updated_at")
    i := i + 1
ENDDO

oHttp:destroy()
oSbResponseBody:destroy()
oJResp:destroy()