> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xpander.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Zoho

> Learn how to integrate AI agents with Zoho using xpander.ai. Create intelligent, low-code applications on Zoho Creator that leverage AI-driven automation, enabling your agents to analyze data, trigger workflows, and interact with customers seamlessly across your Zoho ecosystem.

## About Zoho

Zoho offers a wide array of applications designed to streamline various business operations, including sales, marketing, customer support, finance, human resources, and more.

This integration deals specifically with one of the features offered by Zoho, which is the Zoho Creator.

Zoho Creator offers a wide array of applications designed to streamline various business operations, including sales, marketing, customer support, finance, human resources, and more. Zoho Creator is a low-code application development platform designed to empower users to build custom business applications with minimal coding knowledge.

Zoho Creator key features:

* **Rapid Application Development**: Accelerate app creation by up to 10 times using visual development tools and guided scripting.

* **Cross-Platform Compatibility**: Applications built on Zoho Creator are natively compatible with web browsers, iOS, and Android devices, ensuring seamless access across platforms.

* **Pre-Built Templates**: Access over 60 ready-to-use app templates to jumpstart development for various business needs.

* **Workflow Automation**: Utilize drag-and-drop workflow builders and pre-written code snippets to automate business processes, schedule tasks, and manage approvals efficiently.

## Authentication Options

Below are possible authentication options you can choose:

<Tabs>
  <Tab title="API Access">
    ### Generate a Zoho API Key

    1. Log in to your [Zoho API console](https://accounts.zoho.com/signin?servicename=AaaServer\&context=\&serviceurl=https%3A%2F%2Fapi-console.zoho.com%2F).

    2. Choose the type of application you want to create. In this example, we’ll create a **Self Client** app.

           <img src="https://mintcdn.com/xpanderai-099931d1/7A5N55Cd_ax2ZLOs/images/connectors/zoho/img_1.png?fit=max&auto=format&n=7A5N55Cd_ax2ZLOs&q=85&s=c7728fb4f6596f6c28eea81db3ae945e" alt="Img 1" width="2483" height="1249" data-path="images/connectors/zoho/img_1.png" />

    3. Select **Self Client** and click **Create**.

    4. You’ll see the **Client ID** and **Client Secret**. Next, you’ll need to generate an **authorization code**.

    5. Go to the **Generate Code** tab. Under **Scope**, select the appropriate scopes for your app. You can find a full list in the [Zoho Creator documentation](https://www.zoho.com/creator/help/api/v2.1/oauth-overview.html).

    6. Set the validity duration for the authorization code, then click **Create**.

           <img src="https://mintcdn.com/xpanderai-099931d1/7A5N55Cd_ax2ZLOs/images/connectors/zoho/img_2.png?fit=max&auto=format&n=7A5N55Cd_ax2ZLOs&q=85&s=d92e9314d917a3318bbc0bae03bf8173" alt="Img 2" width="2402" height="1203" data-path="images/connectors/zoho/img_2.png" />

    7. Copy and save your **authorization code**.

    8. To get your access token, run the following request:

    ```bash theme={"dark"}
    curl -X POST <BASE-URL>/oauth/v2/token \
      -d "grant_type=authorization_code" \
      -d "code=<AUTHORIZATION-CODE>" \
      -d "client_id=<CLIENT-ID>" \
      -d "client_secret=<CLIENT-SECRET>"
    ```

    Replace the placeholders with your actual values. You can find the `<BASE-URL>` for your Zoho account [here](http://accounts.zoho.com/oauth/serverinfo).

    9. The response will include your **access token** and **refresh token**.

    ### Integrate Zoho into xpander.ai

    1. In your xpander.ai dashboard, go to the **Connectors** section in the sidebar.
    2. Select **Zoho** from the available integrations.
    3. Click **Enable**.
    4. Enter a **connector name**, e.g., "xpander-zoho".
    5. Select **Integration User** for the authentication mode.
    6. Choose **API Key** as the authentication method.
    7. Paste your Zoho access token into the provided field.
    8. Set the **Auth Type** to **Custom**.
    9. In the **Custom header name** field, enter: `Authorization: Zoho-oauthtoken`.
    10. Save the configuration.

            <img src="https://mintcdn.com/xpanderai-099931d1/7A5N55Cd_ax2ZLOs/images/connectors/zoho/img_3.png?fit=max&auto=format&n=7A5N55Cd_ax2ZLOs&q=85&s=6d1e44f9d07cec771b5ec9f14ab999f2" alt="Img 3" width="3927" height="2030" data-path="images/connectors/zoho/img_3.png" />
  </Tab>
</Tabs>

## Integration of Zoho into AI Agent

Once you've configured your Zoho account with the authentication option(s) described above, you can integrate it into your AI agent with xpander.ai:

1. In your xpander.ai dashboard, go to the **Agent Configuration** tab and select **Tools**, then click **Add Tools**.
2. Select **Connectors**.
3. Choose **Zoho** with the same **connector name** you configured in the previous section (e.g., xpander-zoho).
4. Select the available Zoho operations that suit your use case.

<img src="https://mintcdn.com/xpanderai-099931d1/7A5N55Cd_ax2ZLOs/images/connectors/zoho/img_4.png?fit=max&auto=format&n=7A5N55Cd_ax2ZLOs&q=85&s=14592d38601a859814ef5824f3dff84e" alt="Img 4" width="2229" height="1136" data-path="images/connectors/zoho/img_4.png" />

## Expose Zoho as MCP Server

Alternatively, you can also expose your Zoho account as an MCP server. To do so:

1. Go to the **Connectors** section in the sidebar of your xpander.ai dashboard.
2. Select **Zoho** with the same **connector name** you configured in the previous section (e.g., xpander-zoho).
3. Click **MCP Configuration**.
4. Enter the MCP configuration into the appropriate settings of the client app you want to use (e.g., Cursor, Windsurf, Claude Desktop, etc.).

<img src="https://mintcdn.com/xpanderai-099931d1/7A5N55Cd_ax2ZLOs/images/connectors/zoho/img_5.png?fit=max&auto=format&n=7A5N55Cd_ax2ZLOs&q=85&s=2ed26dd03492e0cc02ab44f84ab6bad2" alt="Img 5" width="2231" height="1134" data-path="images/connectors/zoho/img_5.png" />

## AI Agent Zoho Prompt Library

Below are possible prompts or use cases you can try after integrating Zoho into your xpander AI agent:

```
Could you download the invoice PDF attached to record #{record_id} in the {report_name} report?
```

```
Can you add these 50 new employee records to the {form_name} form in our HR application?
```

```
Has the export job {job_id} for our sales data completed yet?
```

```
Could you export all customer records from the {report_name} report in my {application_name}?
```

## Related Resources

* [Understanding Model Context Protocol (MCP)](/guides/deploy/mcp)
* [Zoho Creator API Documentation](https://www.zoho.com/creator/help/api/v2.1/)
