Create Task
Create a new task in Syncly with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_CREATE_TASK])
Update Task Status
Update the status of an existing task in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_UPDATE_TASK_STATUS])
Assign Task
Assign a task to a specific user or team in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_ASSIGN_TASK])
Create Project
Create a new project in Syncly with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_CREATE_PROJECT])
Add Team Member
Add a new team member to a project or organization in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_ADD_TEAM_MEMBER])
Create Milestone
Create a new milestone for a project in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_CREATE_MILESTONE])
Log Time
Log time spent on a specific task or project in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_LOG_TIME])
Generate Report
Generate a report based on specified criteria in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_GENERATE_REPORT])
Create Invoice
Create a new invoice for a client or project in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_CREATE_INVOICE])
Send Notification
Send a notification to a user or team in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_SEND_NOTIFICATION])
Schedule Meeting
Schedule a new meeting and send invitations in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_SCHEDULE_MEETING])
Create Document
Create a new document in Syncly's document management system.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_CREATE_DOCUMENT])
Set Task Priority
Set or update the priority of a task in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_SET_TASK_PRIORITY])
Archive Project
Archive a completed or inactive project in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_ARCHIVE_PROJECT])
Create Recurring Task
Set up a recurring task with specified frequency in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_CREATE_RECURRING_TASK])
Task Created
Triggered when a new task is created in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_TASK_CREATED_TRIGGER])
Task Completed
Triggered when a task is marked as completed in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_TASK_COMPLETED_TRIGGER])
Project Deadline Approaching
Triggered when a project's deadline is within a specified timeframe.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_PROJECT_DEADLINE_APPROACHING_TRIGGER])
New Team Member Added
Triggered when a new team member is added to a project or organization.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_NEW_TEAM_MEMBER_ADDED_TRIGGER])
Milestone Reached
Triggered when a project milestone is reached or completed.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_MILESTONE_REACHED_TRIGGER])
Budget Exceeded
Triggered when a project's budget is exceeded or nears its limit.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_BUDGET_EXCEEDED_TRIGGER])
Document Updated
Triggered when a document is updated or modified in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_DOCUMENT_UPDATED_TRIGGER])
Task Overdue
Triggered when a task becomes overdue in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_TASK_OVERDUE_TRIGGER])
Invoice Paid
Triggered when an invoice is marked as paid in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_INVOICE_PAID_TRIGGER])
Project Status Changed
Triggered when a project's status is changed in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_PROJECT_STATUS_CHANGED_TRIGGER])
Time Entry Submitted
Triggered when a time entry is submitted by a team member.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_TIME_ENTRY_SUBMITTED_TRIGGER])
Task Assigned
Triggered when a task is assigned to a user or team in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_TASK_ASSIGNED_TRIGGER])
Project Created
Triggered when a new project is created in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_PROJECT_CREATED_TRIGGER])
Meeting Scheduled
Triggered when a new meeting is scheduled in Syncly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNCLY_MEETING_SCHEDULED_TRIGGER])