Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.morf.health/docs/llms.txt

Use this file to discover all available pages before exploring further.

images/zoho.svg

Getting Started

Easily connect Morf to your Zoho account and automate your Zoho workflows, such as syncing contacts, managing deals, and more.

Get access to the API

To connect Morf with Zoho, you need to create a Zoho API client and gather a few credentials. Follow these steps:
  1. Go to the Zoho Developer Console.
  2. Click GET STARTED if prompted. Get Started
  3. Under Self Client, click CREATE NOW. Choose a Client Type
  4. Fill in the required details. Once created, go to the Client Secret tab and copy the Client ID and Client Secret. You will need these to configure the Zoho integration in Morf.
  5. Visit the Zoho CRM homepage and retrieve your Organization ID:
    • Click your profile icon in the top-right corner.
    • Hover to reveal your Organization ID.
    Find Organization ID

Configure Zoho in Morf

  1. In the Morf Dashboard, navigate to Integrations > + Connect Integration.
  2. Enter your Client ID, Client Secret, and Organization ID.

Parameters

Action
Parameters
{
  "$result_object_key": {
    "account_name": "Acme Corp",
    "additional_fields": {
      "Custom_Field_1": "Value1",
      "Custom_Field_2": "Value2"
    },
    "date_of_birth": "1990-01-01",
    "email": "jane.doe@example.com",
    "first_name": "Jane",
    "id": "6325355123451030002",
    "last_name": "Doe",
    "lead_source": "Website",
    "mailing_city": "San Francisco",
    "mailing_country": "USA",
    "mailing_state": "CA",
    "mailing_street": "123 Main St",
    "mailing_zip": "94105",
    "phone": "+1234567890"
  }
}
{
  "$result_object_key": {
    "account_name": "The name of the account associated with the contact.",
    "additional_fields": "Additional fields for the contact.",
    "date_of_birth": "The contact's date of birth.",
    "email": "The contact's email address.",
    "first_name": "The contact's first name.",
    "id": "The contact's unique identifier.",
    "last_name": "The contact's last name.",
    "lead_source": "The source from which the lead originated.",
    "mailing_city": "The city for mailing.",
    "mailing_country": "The country for mailing.",
    "mailing_state": "The state for mailing.",
    "mailing_street": "The street address for mailing.",
    "mailing_zip": "The ZIP code for mailing.",
    "phone": "The contact's phone number."
  }
}

Result Object Field Details

You can use the result of the action’s data as inputs to downstream workflow actions. Each fetch action requires a result object key to be specified which will nest the action’s result data inside the downstream data context in the Workflow. Here we demonstrate how to refer to this data using the prefix $result_object_key.
Contact
Fetch Action Response Object