Trusted by 250,000+ developers from startups to Fortune 500 companies:
This is a pre-built, open source component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.
To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.
New Contact (Instant) on Zoho CRM
Description:Emits an event each time a new contact is created in Zoho CRM
Version:0.0.5
Key:zoho_crm-new-contact
import common from "../common/http-based/predefined-module.mjs";
import crudOps from "../common/http-based/crud-operations.mjs";
export default {
...common,
key: "zoho_crm-new-contact",
name: "New Contact (Instant)",
description: "Emits an event each time a new contact is created in Zoho CRM",
version: "0.0.5",
type: "source",
methods: {
...common.methods,
getModuleName() {
return "Contact";
},
getSupportedOps() {
return [
crudOps.createOpData(),
];
},
},
};
This component may be configured based on the props
defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
Label | Prop | Type | Description |
---|
Zoho CRM | zohoCrm | app | This component uses the Zoho CRM app. |
N/A | db | $.service.db | This component uses $.service.db to maintain state between component invocations. |
N/A | http | $.interface.http | This component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component. |
Subscription Renewal Timer | timer | $.interface.timer | Zoho CRM webhooks subscriptions have an expiration date of up to 1 day. This event source renews the subscription every 12 hours by default.
|
Zoho CRM uses OAuth authentication. When you connect your Zoho CRM account, Pipedream will open a popup window where you can sign into Zoho CRM and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zoho CRM API.
Pipedream requests the following authorization scopes when you connect your account:
ZohoCRM.settings.all
ZohoCRM.users.all
ZohoCRM.org.all
ZohoCRM.modules.all
ZohoCRM.bulk.all
ZohoCRM.notifications.read
ZohoCRM.notifications.create
ZohoCRM.notifications.update
ZohoCRM.notifications.delete
ZohoCRM.coql.READ
ZohoCRM.functions.execute.READ
ZohoCRM.functions.execute.CREATE
ZohoCRM.templates.email.READ
ZohoCRM.templates.inventory.READ
Customer Relationship Management