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.
List Modules on Zoho CRM
Description:Retrieves a list of all the modules available in your CRM account.
Version:0.1.2
Key:zoho_crm-list-module
import { axios } from "@pipedream/platform";
export default {
key: "zoho_crm-list-module",
name: "List Modules",
description: "Retrieves a list of all the modules available in your CRM account.",
version: "0.1.2",
type: "action",
props: {
zoho_crm: {
type: "app",
app: "zoho_crm",
},
},
async run({ $ }) {
return await axios($, {
url: `${this.zoho_crm.$auth.api_domain}/crm/v2/settings/modules`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
},
});
},
};
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 | zoho_crm | app | This component uses the Zoho CRM app. |
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