Sample Extensions

Setting out to build an extension may seem like a daunting task, but with the help of this guide, you'll be a developer whiz in no time. To give you an idea about how the development process works, we've deconstructed two sample extensions and provided detailed information about how they were developed.

The sample extensions are:

Extension NameComponentsDownload Link

Zillow extension 

Custom field, Workflow rule, Custom function, Custom variable, Custom related list.

MailChimp extension 

Webtab, Custom field, Connector, Connector api.

 Zillow extension

Zillow is a leading real estate marketplace that maintains a database of 110 million houses. By integrating Zoho CRM with Zillow, you can make a range of property-related infomation and metrics available for easy viewing. This particular extension integrates with Zillow by using an account specific Zillow ID (zws-id), and provides Zillow property information and competitor details, using the Zillow Property ID (ZPID).

Extension requirements

This extension must be able to obtain the following information:

  • The zws-id (an account specific ID) to map the user's Zillow data with Zoho CRM.
  • The ZPID (a unique ID provided by Zillow for each property) of the property using its address from Zillow's database.
  • Zillow property details, using the zpid, then display it as a related list in the Property Details page in Zoho CRM.
  • Details of the top five competitor properties based on the localiton and price, then displaye it in a related list in Zoho CRM.

List of components

To meet these requirements, seven components were used:

Component Name

Component Type

Purpose

Property price

Custom field

This field stores the value of the property that the user is viewing.

zpid

Custom field

This field holds the property's ZPID. This field is automatically updated based on the property address. The ZPID is used to compare our property prices to the competitor's prices.

getSearchResult

Workflow rule

This workflow rule is used to automate the ZPID retrieval process for each property anytime a new lead (property) is added.

getSearchResult

Custom function

This custom function fetches the zpid of each property and updates the zpid field automatically.

zws-id

Custom variable

zws-id is the organization-specific ID generated by Zillow for each user account. This ID is used to sync data from the user's Zoho CRM with their Zillow account.

Zillow section

Custom related list

This related list displays the complete property details-Property Area, Price, Last Renovated Time, etc. on the record details page.

Zillow comps section

Custom related list

This related list displays the competitor's property details.

To know more about how to add these components to your extension, click here.

How it works

Here's how this extension works, step-by-step:

  • When a Zoho CRM user installs this extension, they will be prompted to enter their zws-id for extension configuration.
  • Once the configuration is successful, every time a new lead (property) is created, the "getSearchResult" workflow rule will be triggered, fetching the zws-id for that property.
  • The custom function associated with the workflow rule is then invoked, and the following actions are performed:
    • The property's address is acquired from the Record Details page.
    • The address is then sent to Zillow, which sends back the property's ZPID from their database, updating the zpid field in the corresponding lead's page.
    • The price quote from the Property Price field is stored in the user's Zillow account.
    • Displays all property details in the Zillow Section related list.
    • Displays details from the top five competitors in the Zillow comps section.

To download this extension to your developer console and know more about learn components, click .

 MailChimp extension

MailChimp is an online marketing device, used to help track your subscribers, manage email campaigns, and track campaign results, making it a vital tool for any salesperson. Integrating MailChimp with Zoho CRM will help your sales team achieve their potential with ease.

Extension requirements

This extension must be able to:

  • Obtain campaign details from MailChimp, then store the record in Campaigns module of Zoho CRM.
  • Acquire the list of subscribers from MailChimp, then add them to either the Leads or Contacts module of Zoho CRM.
  • Track campaign responsed and view the mailing list from Zoho CRM.

List of components

To meet these requirements, nine different components were used:

Component NameComponent TypePurpose

MailChimp

Webtab

The webtab manages data synchronization and mapping within Zoho CRM.

MailChimp Preview URL

Custom field

This field stores the unique campaign URL created by MailChimp.

MailChimp Connector

Connector

This connector provides secure integration with MailChimp using OAuth 2.0

Get Campaigns

Connectorapi

This API fetches the details for every user-created campaign in the MailChimp account. These details are then placed into a new record in the Campaigns module of Zoho CRM.

Get Members

Connectorapi

This API fetches the subscribers list from the user's MailChimp account.

Get Lists

Connectorapi

This API fetches the contact/subscriber lists from the user's MailChimp account.

Create List

Connectorapi

This API creates a new 'Contact' list in CRM for every MailChimp 'Subscriber' list.

Add Member

Connectorapi

This API adds members from MailChimp's 'Subscriber' list into Zoho CRM's 'Contact' list.

Get Metadata

Connectorapi

This API fetches metadata from MailChimp.

To know more about how to add these components to your extension, click here.

How it works

Here's how this extension works, step-by-step:

  1. When a Zoho CRM user installs this extension, they will be asked to authorize the MailChimp connector by clicking the Authorize button. This will open a pop-up.
  2. The user will authorize the connection by providing their MailChimp credentials.
  3. Once the connector is authorized, a new webtab named MailChimp and a new field named MailChimp Preview URL in the Campaigns module will be created.
  4. The user can synchronize their MailChimp data with Zoho CRM by selecting the appropriate MailChimp sync settings under the MailChimp tab. This sync can be either a one-way (MailChimp to Zoho CRM) or a two-way sync.

To download this extension to your developer console and learn more about these components, click .