Zoho Notebook syncs to the cloud and across your devices, is always backed-up, and always up to date.
Go to siteThe Zoho Notebook API allows for the creation, management, and retrieval of digital notes within the Zoho Notebook service. On Pipedream, you can harness this API to automate your note-taking processes, synchronize content across different platforms, and trigger actions based on updates to your notes. With Pipedream's capability to integrate various apps, you can connect Zoho Notebook with other services to streamline workflows and increase productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_notebook: {
type: "app",
app: "zoho_notebook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://notebook.${this.zoho_notebook.$auth.base_api_uri}/api/v1/notebooks`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_notebook.$auth.oauth_access_token}`,
},
})
},
})
Automated Note Syncing with Google Drive: Whenever you create a new note in Zoho Notebook, a Pipedream workflow can automatically replicate the note to a designated folder in Google Drive. This ensures that your notes are backed up and accessible from the cloud storage service of your choice.
Task Creation in Project Management Tools from Notes: When a note containing specific keywords or tags (like "TODO" or "#ProjectX") is added to Zoho Notebook, Pipedream can parse the note and create corresponding tasks in a project management app such as Trello or Asana, linking back to the original note for reference.
Email Digest of Daily Notes: Compile a daily digest email of all new notes created in Zoho Notebook during the day. Using Pipedream's scheduled triggers, you can collate notes and send a summary to yourself or your team to keep everyone informed and aligned.
Emit new event when a new audio card is created in Zoho Notebook
Emit new event when a new checklist card is created in Zoho Notebook.
Emit new event when a new notecard is created in a specific notebook in Zoho Notebook.
Issues Connecting My Account: IP Allowlist
If your Zoho security policy includes an IP Allowlist, update it to connect your account:
44.223.89.56
- 44.223.89.63
.After connecting your account, make sure to run the workflow within a VPC.
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.ALL
ZohoPC.files.ALL
Zohosearch.securesearch.READ
ZohoContacts.userphoto.READ
WorkDrive.files.ALL
WorkDrive.team.ALL
WorkDrive.files.sharing.ALL
GET
https://accounts.{{custom_fields.base_api_uri}}/oauth/v2/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
&
prompt=consent
&
access_type=offline
POST
{{custom_fields.accounts_server}}/oauth/v2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
{{custom_fields.accounts_server}}/oauth/v2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}