Zoho Lead Panel

With Gallabox’s Zoho Leads Panel, your team can view Zoho CRM lead information directly within Gallabox conversations. This eliminates the need to switch tabs or manually search for lead data.

How to Set Up the Zoho Leads Panel

Follow the steps below to configure the Zoho Leads Panel in your Gallabox workspace.

Step 1: Open Zoho Leads Panel in the Gallabox Dashboard

  1. You can log in to your Gallabox account.

  2. From the left navigation, click on Integrations.

  3. You can just scroll through the list of integrations and select Zoho Leads Panel.

Step 2: Click Configure and Select Channel

  1. Click on the Configure button.

  2. In the integration setup, select the channel where you want the lead info widget to appear.

  3. Click on Connect to begin the integration.

Step 3: Log in to Zoho and Authorize Access

  1. You’ll be redirected to the Zoho login page.

  2. Log in to your Zoho CRM account using your credentials.

  3. Choose the CRM organization that you want to link with the Gallabox Leads Panel.

  4. Click on Submit to authorize access and complete the connection.

Step 4: Configure Custom JSON Schema for Zoho Leads Panel

Once the connection is successful, you will be redirected to the Zoho Leads Panel configuration page inside Gallabox.

This is where you define which lead fields from Zoho CRM should appear inside Gallabox conversations using a custom JSON schema.

By default, Gallabox will display the following fields: Lead name, Lead Email, Lead ID, Lead Status, Contact owner name, Contact owner ID, and Contact owner email. If you want additional fields from Zoho to be displayed, define it in the custom Schema.


How to define Lead Fields using JSON Schema

In your JSON Schema, define the fields you want to display in the app panel by listing them under the properties section. We support specific types of field definitions, which must be used correctly.

Object property
Object property type
Format requirements
Examples

Text

$ref: "#/definitions/text"

maxLength: 255

First Name

Numerical

$ref: "#/definitions/numerical"

Decimal or integer

12.00, 100, 45.6

Date

$ref: "#/definitions/date"

YYYY-MM-DD

2024-07-08

Time

$ref: "#/definitions/time"

hh:mm:ssZ

14:30:00+05:30

DateTime

$ref: "#/definitions/date-time"

YYYY-MM-DDThh:mm:ssZ

2024-07-08T14:30:00+05:30

Email

$ref: "#/definitions/email"

Valid email address

Link

$ref: "#/definitions/link"

Must be a valid URI

https://example.com

Phone number

$ref: "#/definitions/phone"

^[+]?[0-9]{1,15}$

+3725000001

Address

$ref: "#/definitions/address"

maxLength: 500

123 Main St, New York, NY

Currency

$ref: "#/definitions/currency"

Object: code (string), value (number)

{ "code": "USD", "value": 120.5 }

Label

$ref: "#/definitions/label"

Object: color (hex), label (text)

{ "color": "#FF5733", "label": "Urgent" }

Tags

$ref: "#/definitions/tags"

Array of strings

["priority", "vip"]

Chip

$ref: "#/definitions/chip"

Single string value

"Lead Won"

Boolean

$ref: "#/definitions/boolean"

true or false

true

Example Usage:

Here, properties contain fields from Zoho Leads and its type is defined in the $ref key.

Phone field from Zoho is of type Phone, which is mentioned as #/definitions/phone

Company field from Zoho is of type Text, which is mentioned as #/definitions/text

Helpful Links

Standard Fields - Zoho CRM Leads:

Step 5: Save and Preview

  1. After entering the schema, click on update configuration.

  2. You can go to the conversation tab and choose a conversation to verify how the panel will appear.

  3. It will be available in right pane.

Only contacts in Zoho as a Lead will be available.

Last updated