Telegram Bot

Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.

Integrate the Telegram Bot API with the Zoho CRM API

Setup the Telegram Bot API trigger to run a workflow which integrates with the Zoho CRM API. Pipedream's integration platform allows you to integrate Telegram Bot and Zoho CRM remarkably fast. Free for developers.

Convert Lead with Zoho CRM API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + Zoho CRM
 
Try it
Convert Lead with Zoho CRM API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + Zoho CRM
 
Try it
Convert Lead with Zoho CRM API on New Bot Command Received (Instant) from Telegram Bot API
Telegram Bot + Zoho CRM
 
Try it
Convert Lead with Zoho CRM API on New Updates (Instant) from Telegram Bot API
Telegram Bot + Zoho CRM
 
Try it
Create Chat Invite Link with Telegram Bot API on New Contact (Instant) from Zoho CRM API
Zoho CRM + Telegram Bot
 
Try it
New Contact (Instant) from the Zoho CRM API

Emits an event each time a new contact is created in Zoho CRM

 
Try it
New Event (Instant) from the Zoho CRM API

Emit new custom events from Zoho CRM

 
Try it
New Lead (Instant) from the Zoho CRM API

Emits an event each time a new lead is created in Zoho CRM

 
Try it
New Module Entry (Instant) from the Zoho CRM API

Emit new events each time a new module/record is created in Zoho CRM

 
Try it
New Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Convert Lead with the Zoho CRM API

Converts a Lead into a Contact or an Account. See the documentation

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Create Object with the Zoho CRM API

Create a new object/module entry. See the documentation

 
Try it
Edit a Media Message with the Telegram Bot API

Edits photo or video messages. See the docs for more information

 
Try it

Overview of Telegram Bot

With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!

Connect Telegram Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    telegram_bot_api: {
      type: "app",
      app: "telegram_bot_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
    })
  },
})

Overview of Zoho CRM

Zoho CRM API is a powerful and versatile tool to create business applications.
It provides an easy to use platform for developers to create customer-facing
applications for businesses of all sizes. With the Zoho CRM API, developers can
create applications for sales, marketing, customer support, and even financial
data management.

The Zoho CRM API provides access to a comprehensive set of features that allow
developers to build efficient, reliable and intuitive business solutions. These
features include:

  • Customer Relationship Management (CRM)
  • Automation Tools
  • Reporting and Analytics
  • Customization and Deployment

Here are some examples of what developers can build using the Zoho CRM API:

  • Automate customer interactions and manage customer relationship workflows
  • Send targeted emails based on customer segmentation or customer behavior
  • Leverage the reporting and analytics capabilities of the Zoho CRM to gain
    insights into customer data
  • Create dynamic dashboards and reports to better understand customer
    engagement and performance
  • Develop customer relationship management apps to capture customer information
    and interact with customers
  • Integrate the Zoho CRM with external applications and services to build
    comprehensive customer-facing applications.

Getting Started

  1. First, sign up for Pipedream at https://pipedream.com.
  2. Create a new workflow.
  3. Select a trigger for your workflow (for example, HTTP or Cron).
  4. Add a new step and search for "Zoho CRM". This will display actions associated with the Zoho CRM app. You can choose to either "Run Node.js code with Zoho CRM" or select one of the prebuilt actions for performing common API operations.
  5. Once you've added a step, press the Connect Zoho CRM button near the top. If this is your first time authorizing Pipedream's access to your Zoho CRM account, you'll be prompted to accept that access, and Pipedream will store the authorization grant to enable the workflow to access the API. If you've already linked a Zoho CRM account via Pipedream, pressing Connect Zoho CRM will list any existing accounts you've linked.

Once you've connected your account, you can run your workflow and fetch data from the API. You can change any of the code associated with this step, changing the API endpoint you'd like to retrieve data from, or modifying the results in any way.

Connect Zoho CRM

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoho_crm: {
      type: "app",
      app: "zoho_crm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.zoho_crm.$auth.api_domain}/crm/v2/users?type=CurrentUser`,
      headers: {
        "Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
      },
    })
  },
})