MitrahSoft is an Adobe offcial partner MitrahSoft is Lucee offcial partner & core contributing developer

Constant Contact API Integration Using ColdFusion

The Constant Contact API v2 is built on HTTP, uses Representational State Transfer (REST) design principles and supports JavaScript Object Notation (JSON) data-interchange format. Constant Contact REST API is simple to use, direct and concise, lightweight and optimized.

constant contact email marketing API ColdFusion Integration
Prerequisites
  1. To use Constant Contact, we must have Constant Contact User Account and Constant Contact Mashery Account(Developer)
  2. After creation of accounts we will know API Key and Client SecretKey and need to register your application for this (Mashery)account.
  3. After that, application to access the Constant Contact API, it needs to have a valid Access Token for customer grants the application access to their account.
Base URL

All of API URLs start with the following base part, https://api.constantcontact.com/v2

Sample Demo

In this blog post, we are going to illustrate how to integrate Constant Contact REST API and how to get access token for accessing their application. Some sample API calls for ADD and GET the Contact List in constant contact using ColdFusion.

Application.cfc

In this file, we created a ConstantContact object in OnApplicationStart function to access the ConstantContact component's methods.

constantContact.cfc

This ColdFusion CFC has all needed functions for get access token and make simple API call for add, get Contacts from ConstantContact. We have just hardcoded API Key , Client SecretKey & RedirectUrl values in init() function. But we need pass these as arguments too. In each function, we provided proper attributes, that will explain each arguments purposes.

Using OAuth 2.0 to Get Access Token

The OAuth 2.0 server flow is used whenever a Constant Contact account uses your integration for the first time. The Constant Contact user must login to their account and give permission to your application to access their Constant Contact account. The application makes an Authentication Request to the Authorization server, and the server returns the access token to their application with Authorization Code and UserName on the URL. After getting the code again Application make an Access Token request using Authorization Code. Then Authentication Server has given the response with Access Token.

Authorization Request

An Authorization Request is formed as a GET call to the authorize API endpoint

https://oauth2.constantcontact.com/oauth2/oauth/siteowner/authorize
Parameters Values Description
response_type token The value token tells the authentication server to send an access token to a web application.
client_id Identifies the client that is making the request to the server. This value must always be set to the exact value of the API_key.
redirect_uri Authorization Server where to authentication code to send the user once access is granted.
oauthSignup true or false(default) Use oauthSignup=true to show a sign up link on the login page.
NOTE:This parameter is ignored when using newUser parameter
newUser true or false(default) Use newUser=true to send users who do not have a Constant Contact account to the account signup page.

Example Authorization Request:

constant contact oAuth2 ColdFusion flow
Add New ContactsList

Use this endpoint to create a New Contact List. An account can have a maximum of 1000 lists. For Creation of new contact list, you must include the Name of the list, and the Status of the list.

POST: https://api.constantcontact.com/v2/lists
Parameters Used in Add New ContactsList
Parameters Values Description
api_key REQUIRED; The API key for the application API_key.
Request Body JSON Values of Contact List Details JSON Request Body to add the new contact list for our the Application.
Example JSON Request Body
{ "name": "Hot Opportunities", "status": "ACTIVE" }
Example Response
addContactList response
Get ContactList

Use this endpoint to retrieve a collection of existing contact lists.

GET: https://api.constantcontact.com/v2/lists
Parameters Used in Get ContactList
Parameters Values Description
api_key REQUIRED; The API key for the application API_key.
include_list_id true or false (default) include_list_id=true returns the uuid formatted list_id property, which is the list unique identifier in the V3 API. Useful for migrating V2 API integrations to the V3 API.
Example Respose
getContactList response
Add New Contact

To create a new contact, the contact must have an email address and be assigned to a contact list. But we need to identifies who originated the action of adding the contact. For this we'll using the extra argument to add contact as account or subscriber.

Use this below endpoint to create (POST) a new contact.

POST: https://api.constantcontact.com/v2/contacts
Parameters Used in Add New Contact
Parameters Values Description
action_by ACTION_BY_OWNER(default) or ACTION_BY_VISITOR

The following values are we need to use:

  • ACTION_BY_OWNER - contact was added by the account and not the subscriber.
  • ACTION_BY_VISITOR - contact was added by the contact.
api_key REQUIRED; The API key for the application API_key.
Request Body JSON Values of Contact Details JSON Request Body for the Application.
Example JSON Request Body
Example Respose
addNewContact response
Get Contacts

Gets one or more contacts in the account, depending on the query parameters used:

  • All contacts in a user's account (no query parameters used)
  • A specific contact specified by the email query parameter
    • URL encode the email address, as with all query parameters values, to ensure proper system response.
    • The API is not able to return a contact by email address call if a contact's email address has been deleted in the product UI
  • Only the contacts that have been modified on or after the date/time specified by the modified_since query parameter. This is useful for syncing contacts across applications.
  • Only the contacts with a status specified by the status query parameter
GET: https://api.constantcontact.com/v2/contacts
Parameters Values Description
api_key REQUIRED; The API key for the application API_key.
email Email address for the particular contact specify the EXACT contact by email address to retrieve information.
limit 1 - 500 default(50) Specifies the number of results displayed per page of output.
Example response
getContacts response


Debugging Information
Lucee (Gelert) Os 5.4.8.2-SNAPSHOT (CFML Version 2016,0,03,300357)
Template /index.cfm (/home/bangalor/public_html/index.cfm)
Time Stamp 07-Aug-2026 5:58 AM
Time Zone IST
Locale En_in
User Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Remote IP 216.73.216.102
Host Name www.css.mitrahsoft.com
Architecture 64bit


Execution Time

Total Time Avg Time Count Template
407 ms 407 ms 1 /home/bangalor/public_html/layouts/blog.cfm
231 ms 231 ms 1 /home/bangalor/public_html/layouts/inc/topNav.cfm
201 ms 201 ms 1 /home/bangalor/public_html/Application.cfc
127 ms 127 ms 1 /home/bangalor/public_html/layouts/inc/footer.cfm
19.2 ms 19.2 ms 1 /home/bangalor/public_html/layouts/inc/htmlHead.cfm
11.6 ms 11.6 ms 1 /home/bangalor/public_html/Application.cfc$onRequestStart
9.07 ms 9.07 ms 1 /home/bangalor/public_html/Application.cfc$onSessionStart
1.14 ms 1.14 ms 1 /home/bangalor/public_html/framework/one.cfc
1.04 ms 1.04 ms 1 /home/bangalor/public_html/layouts/inc/breadcrumb.cfm
0.79 ms 0.79 ms 1 /home/bangalor/public_html/layouts/inc/contactForm.cfm
0.197 ms 0.197 ms 1 /home/bangalor/public_html/framework/ioc.cfc$containsBean
0.163 ms 0.163 ms 1 /home/bangalor/public_html/views/blog/constant-contact-api-integration-using-coldfusion.cfm
0.018 ms 0.018 ms 1 /home/bangalor/public_html/WEB-INF/lucee/context/Component.cfc
0.016 ms 0.016 ms 1 /home/bangalor/public_html/Application.cfc$onRequestEnd
0 ms 0 ms 1 /home/bangalor/public_html/layouts/default.cfm
0 ms 0 ms 1 /home/bangalor/public_html/Application.cfc$onRequest
30 ms  STARTUP, PARSING, COMPILING, LOADING, & SHUTDOWN
1010 ms  APPLICATION EXECUTION TIME
1.13 ms  QUERY EXECUTION TIME
1041 ms  TOTAL EXECUTION TIME
red = over 250 ms average execution time


Implicit variable Access

Scope Template Line Var Count
arguments /home/bangalor/public_html/framework/ioc.cfc 90 BEANNAME 1
arguments /home/bangalor/public_html/framework/one.cfc 59 ACTION 1119
arguments /home/bangalor/public_html/framework/one.cfc 108 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 110 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 113 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 113 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 114 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 116 QUERYSTRING 240
arguments /home/bangalor/public_html/framework/one.cfc 119 QUERYSTRING 120
arguments /home/bangalor/public_html/framework/one.cfc 121 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 122 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 141 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 153 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 175 QUERYSTRING 120
arguments /home/bangalor/public_html/framework/one.cfc 213 PATH 119
arguments /home/bangalor/public_html/framework/one.cfc 215 PATH 1
arguments /home/bangalor/public_html/framework/one.cfc 250 ACTION 2
arguments /home/bangalor/public_html/framework/one.cfc 251 ACTION 2
arguments /home/bangalor/public_html/framework/one.cfc 252 ACTION 2
arguments /home/bangalor/public_html/framework/one.cfc 286 FULLPATH 4
arguments /home/bangalor/public_html/framework/one.cfc 358 SUBSYSTEM 1
arguments /home/bangalor/public_html/framework/one.cfc 359 SUBSYSTEM 1
arguments /home/bangalor/public_html/framework/one.cfc 443 ACTION 2
arguments /home/bangalor/public_html/framework/one.cfc 460 ACTION 2
arguments /home/bangalor/public_html/framework/one.cfc 476 ACTION 129
arguments /home/bangalor/public_html/framework/one.cfc 520 ACTION 6
arguments /home/bangalor/public_html/framework/one.cfc 529 ACTION 501
arguments /home/bangalor/public_html/framework/one.cfc 530 ACTION 366
arguments /home/bangalor/public_html/framework/one.cfc 532 ACTION 135
arguments /home/bangalor/public_html/framework/one.cfc 559 ACTION 374
arguments /home/bangalor/public_html/framework/one.cfc 560 ACTION 249
arguments /home/bangalor/public_html/framework/one.cfc 602 ACTION 244
arguments /home/bangalor/public_html/framework/one.cfc 603 ACTION 248
arguments /home/bangalor/public_html/framework/one.cfc 609 ACTION 120
arguments /home/bangalor/public_html/framework/one.cfc 648 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 649 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 651 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 689 TARGETPATH 1
arguments /home/bangalor/public_html/framework/one.cfc 691 TARGETPATH 1
arguments /home/bangalor/public_html/framework/one.cfc 981 TARGETPATH 1
arguments /home/bangalor/public_html/framework/one.cfc 1070 ROUTES 1
arguments /home/bangalor/public_html/framework/one.cfc 1076 PATH 8
arguments /home/bangalor/public_html/framework/one.cfc 1076 HTTPMETHOD 8
arguments /home/bangalor/public_html/framework/one.cfc 1481 CFC 1
arguments /home/bangalor/public_html/framework/one.cfc 1594 FILEPATH 4
arguments /home/bangalor/public_html/framework/one.cfc 1625 TUPLE 6
arguments /home/bangalor/public_html/framework/one.cfc 1626 METHOD 6
arguments /home/bangalor/public_html/framework/one.cfc 1643 TUPLE 12
arguments /home/bangalor/public_html/framework/one.cfc 1643 LIFECYCLE 6
arguments /home/bangalor/public_html/framework/one.cfc 1643 METHOD 6
arguments /home/bangalor/public_html/framework/one.cfc 1687 CFC 1
arguments /home/bangalor/public_html/framework/one.cfc 1722 CFC 1
arguments /home/bangalor/public_html/framework/one.cfc 1817 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 1820 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 1823 SECTION 2
arguments /home/bangalor/public_html/framework/one.cfc 1824 SECTION 2
arguments /home/bangalor/public_html/framework/one.cfc 1828 SECTION 2
variables /home/bangalor/public_html/framework/one.cfc 1829 cflock 1
arguments /home/bangalor/public_html/framework/one.cfc 1830 SECTION 1
arguments /home/bangalor/public_html/framework/one.cfc 1831 SUBSYSTEM 1
arguments /home/bangalor/public_html/framework/one.cfc 1836 SECTION 1
arguments /home/bangalor/public_html/framework/one.cfc 1851 SUBSYSTEM 1
arguments /home/bangalor/public_html/framework/one.cfc 1869 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 1869 SECTION 2
arguments /home/bangalor/public_html/framework/one.cfc 1919 SUBSYSTEM 6
arguments /home/bangalor/public_html/framework/one.cfc 1925 SUBSYSTEM 2
arguments /home/bangalor/public_html/framework/one.cfc 1931 CFC 2
arguments /home/bangalor/public_html/framework/one.cfc 1961 BODY 2
arguments /home/bangalor/public_html/framework/one.cfc 1962 LAYOUTPATH 2
arguments /home/bangalor/public_html/framework/one.cfc 1966 LAYOUTPATH 2
arguments /home/bangalor/public_html/framework/one.cfc 1979 ARGS 1
arguments /home/bangalor/public_html/framework/one.cfc 1980 VIEWPATH 1
arguments /home/bangalor/public_html/framework/one.cfc 1984 VIEWPATH 1
arguments /home/bangalor/public_html/framework/one.cfc 2000 SUBSYSTEM 3
arguments /home/bangalor/public_html/framework/one.cfc 2006 DELIMITER 249
arguments /home/bangalor/public_html/framework/one.cfc 2006 SEGMENTS 249
arguments /home/bangalor/public_html/framework/one.cfc 2011 SEGMENTS 1
arguments /home/bangalor/public_html/framework/one.cfc 2019 QUERYSTRING 120
arguments /home/bangalor/public_html/framework/one.cfc 2028 QUERYSTRING 120
arguments /home/bangalor/public_html/framework/one.cfc 2031 QUERYSTRING 120
arguments /home/bangalor/public_html/framework/one.cfc 2035 SEGMENTS 370
arguments /home/bangalor/public_html/framework/one.cfc 2035 DELIMITER 370
arguments /home/bangalor/public_html/framework/one.cfc 2037 SEGMENTS 370
arguments /home/bangalor/public_html/framework/one.cfc 2040 SEGMENTS 740
arguments /home/bangalor/public_html/framework/one.cfc 2047 TYPE 4
arguments /home/bangalor/public_html/framework/one.cfc 2058 PATH 4
arguments /home/bangalor/public_html/framework/one.cfc 2061 PATH 4
arguments /home/bangalor/public_html/framework/one.cfc 2068 TYPE 4
arguments /home/bangalor/public_html/framework/one.cfc 2074 TARGET 8
arguments /home/bangalor/public_html/framework/one.cfc 2074 ROUTE 8
arguments /home/bangalor/public_html/framework/one.cfc 2143 PATH 16
arguments /home/bangalor/public_html/framework/one.cfc 2144 PATH 8
arguments /home/bangalor/public_html/framework/one.cfc 2169 PATH 8
arguments /home/bangalor/public_html/framework/one.cfc 2169 PATTERN 8
arguments /home/bangalor/public_html/framework/one.cfc 2336 PATH 240
arguments /home/bangalor/public_html/framework/one.cfc 2337 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 2347 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 2348 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 2356 PATH 240
arguments /home/bangalor/public_html/framework/one.cfc 2360 PATH 120
arguments /home/bangalor/public_html/framework/one.cfc 2959 RUNSETUP 1
arguments /home/bangalor/public_html/framework/one.cfc 2981 SUBSYSTEM 5
arguments /home/bangalor/public_html/framework/one.cfc 2982 SUBSYSTEM 3
variables /home/bangalor/public_html/framework/one.cfc 2982 cflock 3
arguments /home/bangalor/public_html/framework/one.cfc 2983 SUBSYSTEM 3
arguments /home/bangalor/public_html/framework/one.cfc 3033 ACTION 1
arguments /home/bangalor/public_html/framework/one.cfc 3037 ACTION 1
variables /home/bangalor/public_html/layouts/blog.cfm 19 ALLTAGLIST 1
variables /home/bangalor/public_html/layouts/blog.cfm 25 singleTag 39
variables /home/bangalor/public_html/layouts/blog.cfm 25 ALLTAGLIST 1
variables /home/bangalor/public_html/layouts/blog.cfm 26 SINGLETAG 78
query /home/bangalor/public_html/layouts/blog.cfm 37 ARCHIVESLINK 50
variables /home/bangalor/public_html/layouts/default.cfm 9 fullhtmlContent 1
variables /home/bangalor/public_html/layouts/default.cfm 10 FULLHTMLCONTENT 2
variables /home/bangalor/public_html/layouts/default.cfm 12 FULLHTMLCONTENT 1
variables /home/bangalor/public_html/layouts/inc/breadcrumb.cfm 9 GETCURRENTPAGE 2
variables /home/bangalor/public_html/layouts/inc/breadcrumb.cfm 9 PAGETITLE 1
variables /home/bangalor/public_html/layouts/inc/breadcrumb.cfm 11 PAGETITLE 1
variables /home/bangalor/public_html/layouts/inc/breadcrumb.cfm 17 ITEM 1
variables /home/bangalor/public_html/layouts/inc/breadcrumb.cfm 17 SECTION 1
variables /home/bangalor/public_html/layouts/inc/breadcrumb.cfm 22 PAGETITLE 1
variables /home/bangalor/public_html/layouts/inc/contactForm.cfm 71 FORMLOCATION 1
variables /home/bangalor/public_html/layouts/inc/contactForm.cfm 76 FORMLOCATION 1
variables /home/bangalor/public_html/layouts/inc/contactForm.cfm 121 FORMLOCATION 1
variables /home/bangalor/public_html/layouts/inc/footer.cfm 97 FORMLOCATION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 3 ITEM 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 4 SECTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 9 SECTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 16 ITEM 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 21 ITEM 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 23 getCurrentPage 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 23 cfquery 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 25 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 25 STRBROWSERTITLE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 26 STRBROWSERTITLE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 28 SECTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 29 STRBROWSERTITLE 2
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 30 STRMETADESCRIPTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 30 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 31 STRMETADESCRIPTION 2
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 33 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 33 STRMETAKEYWORDS 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 34 STRMETAKEYWORDS 2
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 45 STRMETAKEYWORDS 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 46 STRMETADESCRIPTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 47 STRBROWSERTITLE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 62 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 63 IMGNAME 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 63 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 76 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 77 STRMETADESCRIPTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 78 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 79 IMGNAME 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 82 IMGNAME 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 84 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 85 STRMETADESCRIPTION 1
variables /home/bangalor/public_html/layouts/inc/htmlHead.cfm 87 GETCURRENTPAGE 1
variables /home/bangalor/public_html/layouts/inc/topNav.cfm 42 cfquery 6


SQL Queries

getCurrentPage (Datasource=, Time=0.144 ms, Records=1) in /home/bangalor/public_html/layouts/inc/htmlHead.cfm:7
the following colum(s) are never read within the request:archivesLink,publishedDate,isPublished,id
select * from
    
        Application.qBlogPosts
    

    where lower(urlText)
    
        = 'constant-contact-api-integration-using-coldfusion'
qInnerPages (Datasource=, Time=0.178 ms, Records=4) in /home/bangalor/public_html/layouts/inc/topNav.cfm:39
the following colum(s) are never read within the request:iconClass,parentID,metaKeyWords,browserTitle,isExternalLink,orderBy,showinNav,metaDescription
select * from Application.qPages where parentID = 2 AND showinNav = 1
                    order by orderBy
qInnerPages (Datasource=, Time=0.148 ms, Records=8) in /home/bangalor/public_html/layouts/inc/topNav.cfm:39
the following colum(s) are never read within the request:iconClass,isMegaMenu,parentID,metaKeyWords,browserTitle,orderBy,id,showinNav,metaDescription
select * from Application.qPages where parentID = 21 AND showinNav = 1
                    order by orderBy
qInnerPages (Datasource=, Time=0.163 ms, Records=8) in /home/bangalor/public_html/layouts/inc/topNav.cfm:39
the following colum(s) are never read within the request:iconClass,isMegaMenu,parentID,metaKeyWords,browserTitle,orderBy,id,showinNav,metaDescription
select * from Application.qPages where parentID = 22 AND showinNav = 1
                    order by orderBy
qInnerPages (Datasource=, Time=0.191 ms, Records=7) in /home/bangalor/public_html/layouts/inc/topNav.cfm:39
the following colum(s) are never read within the request:iconClass,isMegaMenu,parentID,metaKeyWords,browserTitle,orderBy,id,showinNav,metaDescription
select * from Application.qPages where parentID = 23 AND showinNav = 1
                    order by orderBy
qInnerPages (Datasource=, Time=0.168 ms, Records=4) in /home/bangalor/public_html/layouts/inc/topNav.cfm:39
the following colum(s) are never read within the request:iconClass,isMegaMenu,parentID,metaKeyWords,browserTitle,orderBy,id,showinNav,metaDescription
select * from Application.qPages where parentID = 25 AND showinNav = 1
                    order by orderBy
qInnerPages (Datasource=, Time=0.145 ms, Records=5) in /home/bangalor/public_html/layouts/inc/topNav.cfm:39
the following colum(s) are never read within the request:iconClass,isMegaMenu,parentID,metaKeyWords,browserTitle,orderBy,id,showinNav,metaDescription
select * from Application.qPages where parentID = 4 AND showinNav = 1
                    order by orderBy


Scope Variables

Application Variables:
applicationname=MitrahSoft_2.0
BSCDN=//cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/
CSSDOMAIN=/
EXAMPLESURL=http://examples.mitrahsoft.com
framework.one=Struct (4)
IMAGESDOMAIN=/
INDIA_NUMBER=9092480924
JSDOMAIN=/
MDICDN=//cdn.jsdelivr.net/npm/@mdi/font@5.9.55/
qBlogMonths=Query (48)
QBLOGPOSTS=Query (48)
QMITRAHPAGES=Query (59)
qPages=Query (59)
qRootPages=Query (4)
ROOT=/
SYSTEMPATH=/home/bangalor/public_html/
US_NUMBER=8176068684
US_NUMBER_FORMATTED=(817) 606-8684
CGI Variables:
auth_password=
auth_type=
auth_user=
cert_cookie=
cert_flags=
cert_issuer=
cert_keysize=
cert_secretkeysize=
cert_serialnumber=
cert_server_issuer=
cert_server_subject=
cert_subject=
cf_template_path=/home/bangalor/public_html/index.cfm
content_length=
content_type=
context_path=
gateway_interface=
http_accept=*/*
http_accept_encoding=gzip, br, zstd, deflate
http_accept_language=
http_connection=close
http_cookie=
http_host=www.css.mitrahsoft.com
http_referer=
http_user_agent=Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
https=on
https_keysize=
https_secretkeysize=
https_server_issuer=
https_server_subject=
local_addr=178.159.5.243
local_host=greyhound.dnshostnetwork.com
path_info=/blog/constant-contact-api-integration-using-coldfusion
path_translated=/home/bangalor/public_html/index.cfm
query_string=
remote_addr=216.73.216.102
remote_host=216.73.216.102
remote_user=
request_method=GET
request_url=https://www.css.mitrahsoft.com/index.cfm/blog/constant-contact-api-integration-using-coldfusion
script_name=/index.cfm
server_name=www.css.mitrahsoft.com
server_port=443
server_port_secure=1
server_protocol=HTTP/1.1
server_software=
web_server_api=
Cookie Variables:
cfid=2dda44e2-f4d2-41fc-8531-f3c2657f9512
cftoken=0
Request Variables:
_fw1=Struct (16)
action=blog.constant-contact-api-integration-using-coldfusion
base=/
cfcbase=
context=Struct (1)
item=constant-contact-api-integration-using-coldfusion
layout=false
org.apache.catalina.AccessLog.Protocol=HTTP/1.1
org.apache.catalina.AccessLog.RemoteAddr=216.73.216.102
org.apache.catalina.AccessLog.RemoteHost=216.73.216.102
org.apache.catalina.AccessLog.ServerName=www.css.mitrahsoft.com
org.apache.catalina.AccessLog.ServerPort=443
org.apache.tomcat.remoteAddr=216.73.216.102
org.apache.tomcat.request.forwarded=true
section=blog
subsystem=
subsystembase=/
version=204
Server Variables:
A0608BEC-0AEB-B46A-0E1E1EC5F3CE7C9C.0.6=Complex type
A0608BEC-0AEB-B46A-0E1E1EC5F3CE7C9C.1.1=Complex type
A0608BEC-0AEB-B46A-0E1E1EC5F3CE7C9C.1.2=Complex type
CACHE=Struct (174)
CACHE_TIMESTAMPS=Struct (174)
cbox-javaloader-1B50254DE719A76B2ADC708B9F6D56EE=Component (modules.str.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-52B877CA0494DF462AFAE4B19932AA27=Component (modules.contentbox.modules.contentbox-deps.modules.cbmarkdown.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-554E0B2DF76810BDA83FB33DA8A8ABE9=Component (modules.contentbox.modules.contentbox-deps.modules.cbmarkdown.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-757114FCCFB5C490D952526BFDF3987E=Component (modules.str.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-7C624209BA64FDFA88C5C8208DA20E5C=Component (modules.quick.modules.str.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-8E03551109DB0559698D811C86B103EB=Component (modules.contentbox.modules.contentbox-deps.modules.cbmarkdown.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-AEAAE1EF90B4BB57161501BD525097AE=Component (modules.BCrypt.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-D3D5EEDE3F35A4658B10897E5F82E29A=Component (modules.relax.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-D98F90619134ECE764EC062DCA91FCE0=Component (modules.quick.modules.str.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-DDCEE58D59F22F146C90D6E97C07CA45=Component (modules.relax.modules.cbjavaloader.models.javaloader.JavaLoader)
cbox-javaloader-F4E336252BF14F02E265FDC3C6BA95E1=Component (modules.quick.modules.str.modules.cbjavaloader.models.javaloader.JavaLoader)
coldfusion=Struct (9)
java=Struct (8)
LOGIN_BRIDGE=Struct (0)
lucee=Struct (8)
os=Struct (8)
PRODSTRUCT=Struct (1)
RECENT_ORDERS=Array (16)
separator=Struct (3)
servlet=Struct (1)
system=Struct (2)
ZONESTR=Struct (0)
Session Variables:
cfid=2dda44e2-f4d2-41fc-8531-f3c2657f9512
cftoken=0
chk_rand_footer=0047
lastvisit={ts '2026-08-07 05:58:34'}
PAGEHISTORY=Array (1)
REF=
sessionid=MitrahSoft_2.0_2dda44e2-f4d2-41fc-8531-f3c2657f9512_0
timecreated={ts '2026-08-07 05:58:34'}
urltoken=CFID=2dda44e2-f4d2-41fc-8531-f3c2657f9512&CFTOKEN=0
Debug Rendering Time: 0 ms