This is a pre-built, source-available 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 Checklist Card on Zoho Notebook
Description:Emit new event when a new checklist card is created in Zoho Notebook.
Version:0.0.1
Key:zoho_notebook-new-checklist-card
import common from "../common/base.mjs";
export default {
...common,
key: "zoho_notebook-new-checklist-card",
name: "New Checklist Card",
description: "Emit new event when a new checklist card is created in Zoho Notebook.",
version: "0.0.1",
type: "source",
dedupe: "unique",
methods: {
...common.methods,
isRelevant(item) {
return item.type === "note/checklist";
},
getSummary(item) {
return `New Checklist Card ID: ${item.notecard_id}`;
},
},
};
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 Notebook | zohoNotebook | app | This component uses the Zoho Notebook app. |
| N/A | db | $.service.db | This component uses $.service.db to maintain state between executions. |
timer | $.interface.timer |
| Notebook ID | notebookId | string | Select a value from the drop down menu. |
Zoho Notebook uses OAuth authentication. When you connect your Zoho Notebook account, Pipedream will open a popup window where you can sign into Zoho Notebook 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 Notebook API.
Pipedream requests the following authorization scopes when you connect your account:
Notebook.notebook.ALLZohoPC.files.ALLZohosearch.securesearch.READZohoContacts.userphoto.READWorkDrive.files.ALLWorkDrive.team.ALLWorkDrive.files.sharing.ALL
Zoho Notebook syncs to the cloud and across your devices, is always backed-up, and always up to date.