Create Epic
Create a new epic in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_EPIC])
Create Sprint
Create a new sprint in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SPRINT])
Create Task
Create a new task in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Update Task Status
Update the status of an existing task in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK_STATUS])
Assign Task
Assign a task to a team member in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_TASK])
Create User Story
Create a new user story in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_USER_STORY])
Update Sprint Status
Update the status of an existing sprint in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SPRINT_STATUS])
Create Backlog Item
Create a new backlog item in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BACKLOG_ITEM])
Log Time
Log time spent on a task in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOG_TIME])
Create Bug
Create a new bug report in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BUG])
Update Epic Status
Update the status of an existing epic in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_EPIC_STATUS])
Create Milestone
Create a new milestone in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MILESTONE])
Generate Sprint Report
Generate a report for a completed sprint in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_SPRINT_REPORT])
Create Team
Create a new team in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TEAM])
New Task Created
Triggered when a new task is created in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_CREATED])
Task Status Changed
Triggered when the status of a task is changed in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_STATUS_CHANGED])
Sprint Started
Triggered when a new sprint is started in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPRINT_STARTED])
Sprint Completed
Triggered when a sprint is completed in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPRINT_COMPLETED])
Epic Created
Triggered when a new epic is created in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EPIC_CREATED])
Task Assigned
Triggered when a task is assigned to a team member in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_ASSIGNED])
Bug Reported
Triggered when a new bug is reported in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BUG_REPORTED])
Milestone Reached
Triggered when a milestone is reached in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MILESTONE_REACHED])
Time Logged
Triggered when time is logged for a task in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TIME_LOGGED])
Backlog Item Added
Triggered when a new item is added to the backlog in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BACKLOG_ITEM_ADDED])
User Story Created
Triggered when a new user story is created in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_STORY_CREATED])
Team Member Added
Triggered when a new team member is added to a project in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TEAM_MEMBER_ADDED])
Sprint Burndown Updated
Triggered when the sprint burndown chart is updated in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPRINT_BURNDOWN_UPDATED])
Epic Completed
Triggered when an epic is marked as completed in Zoho Sprints
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EPIC_COMPLETED])