Telegram is a cloud-based instant messaging and voice over IP service
Emits an event each time a new contact is created in Zoho CRM
Emit new events each time a new module/record is created in Zoho CRM
Emit new event each time a Telegram Bot command is received.
Create an additional invite link for a chat, See the docs for more information
Converts a Lead into a Contact or an Account. See the documentation
Edits photo or video messages. See the docs for more information
With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:
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`,
})
},
})
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:
Here are some examples of what developers can build using the Zoho CRM API:
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.
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}`,
},
})
},
})