Create Note
Creates a new note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_NOTE])
Update Note
Updates an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_NOTE])
Delete Note
Deletes a specific note from Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_NOTE])
Create Notebook
Creates a new notebook in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_NOTEBOOK])
Delete Notebook
Deletes a specific notebook from Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_NOTEBOOK])
Add Tag To Note
Adds a tag to an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TAG_TO_NOTE])
Remove Tag From Note
Removes a tag from an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_TAG_FROM_NOTE])
Move Note
Moves a note from one notebook to another in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MOVE_NOTE])
Add Reminder To Note
Adds a reminder to an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_REMINDER_TO_NOTE])
Remove Reminder From Note
Removes a reminder from an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_REMINDER_FROM_NOTE])
Add Attachment To Note
Adds an attachment to an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_ATTACHMENT_TO_NOTE])
Remove Attachment From Note
Removes an attachment from an existing note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_ATTACHMENT_FROM_NOTE])
Share Note
Shares a note with other users in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_NOTE])
Unshare Note
Revokes sharing permissions for a note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UNSHARE_NOTE])
Lock Note
Locks a note with a password in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOCK_NOTE])
Unlock Note
Unlocks a previously locked note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UNLOCK_NOTE])
Convert Note To Checklist
Converts a regular note to a checklist note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONVERT_NOTE_TO_CHECKLIST])
Add Item To Checklist
Adds a new item to a checklist note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_ITEM_TO_CHECKLIST])
Remove Item From Checklist
Removes an item from a checklist note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_ITEM_FROM_CHECKLIST])
Mark Checklist Item Complete
Marks a checklist item as complete in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MARK_CHECKLIST_ITEM_COMPLETE])
New Note Created
Triggered when a new note is created in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_CREATED])
Note Updated
Triggered when an existing note is updated in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NOTE_UPDATED])
Note Deleted
Triggered when a note is deleted from Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NOTE_DELETED])
New Notebook Created
Triggered when a new notebook is created in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTEBOOK_CREATED])
Notebook Deleted
Triggered when a notebook is deleted from Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NOTEBOOK_DELETED])
Tag Added To Note
Triggered when a tag is added to a note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_ADDED_TO_NOTE])
Tag Removed From Note
Triggered when a tag is removed from a note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_REMOVED_FROM_NOTE])
Note Moved
Triggered when a note is moved from one notebook to another in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NOTE_MOVED])
Reminder Added To Note
Triggered when a reminder is added to a note in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMINDER_ADDED_TO_NOTE])
Reminder Triggered
Triggered when a reminder for a note is due in Zoho Notebook
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMINDER_TRIGGERED])