Create A Time Tracking Entry
Creates a time tracking entry on a given task. Returns the record of the
newly created time tracking entry.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASANA_CREATE_A_TIME_TRACKING_ENTRY])
Get A Time Tracking Entry
Returns the complete time tracking entry record for a single time tracking
entry.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASANA_GET_A_TIME_TRACKING_ENTRY])
Update A Time Tracking Entry
Update a time tracking entry by sending a `PUT` request with desired changes
to its URL. Unspecified fields won't change to avoid overwriting others'
updates. The response includes the updated
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASANA_UPDATE_A_TIME_TRACKING_ENTRY])
Delete A Time Tracking Entry
A specific, existing time tracking entry can be deleted by making a `DELETE`
request on the URL for that time tracking entry. Returns an empty data record.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASANA_DELETE_A_TIME_TRACKING_ENTRY])