Create Dashboard
Create a new dashboard in Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DASHBOARD])
Create Report
Create a new report in Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_REPORT])
Update Report
Update an existing report with new data or settings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_REPORT])
Delete Report
Delete an existing report from Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_REPORT])
Share Dashboard
Share a dashboard with specific users or groups
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_DASHBOARD])
Schedule Report
Set up a schedule for automatic report generation and delivery
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_REPORT])
Import Data
Import data from external sources into Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_DATA])
Export Data
Export data from Zoho Analytics to various file formats
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_DATA])
Create Table
Create a new table in Zoho Analytics database
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TABLE])
Add Column To Table
Add a new column to an existing table
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_COLUMN_TO_TABLE])
Create Chart
Create a new chart based on existing data
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CHART])
Apply Filter
Apply a filter to a report or dashboard
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPLY_FILTER])
Create Calculated Column
Create a new column with a custom formula
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CALCULATED_COLUMN])
Set Up Data Alert
Configure alerts based on specific data conditions
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_UP_DATA_ALERT])
Create Slideshow
Create a slideshow of reports and dashboards
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SLIDESHOW])
Merge Tables
Combine data from multiple tables into a single table
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MERGE_TABLES])
Create Pivot Table
Generate a pivot table from existing data
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PIVOT_TABLE])
Set Up Data Sync
Configure automatic data synchronization with external sources
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_UP_DATA_SYNC])
New Data Import
Triggered when new data is imported into Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DATA_IMPORT])
Report Scheduled
Triggered when a report is scheduled for automatic generation
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REPORT_SCHEDULED])
Dashboard Shared
Triggered when a dashboard is shared with users or groups
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DASHBOARD_SHARED])
Data Alert Triggered
Triggered when a configured data alert condition is met
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATA_ALERT_TRIGGERED])
Report Created
Triggered when a new report is created in Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REPORT_CREATED])
Dashboard Updated
Triggered when changes are made to an existing dashboard
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DASHBOARD_UPDATED])
Data Sync Completed
Triggered when a scheduled data synchronization is completed
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATA_SYNC_COMPLETED])
User Activity Log
Triggered when there's significant user activity in Zoho Analytics
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_ACTIVITY_LOG])
Table Schema Changed
Triggered when the schema of a table is modified
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TABLE_SCHEMA_CHANGED])
Scheduled Export Completed
Triggered when a scheduled data export is completed
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULED_EXPORT_COMPLETED])