Create Task
Creates a new task in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Update Task
Updates an existing task in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK])
Delete Task
Deletes a task from Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_TASK])
Create Property
Adds a new property listing to Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PROPERTY])
Update Property
Updates an existing property listing in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PROPERTY])
Delete Property
Removes a property listing from Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_PROPERTY])
Schedule Showing
Schedules a property showing in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_SHOWING])
Cancel Showing
Cancels a scheduled property showing in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANCEL_SHOWING])
Create Transaction
Initiates a new real estate transaction in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TRANSACTION])
Update Transaction
Updates an existing real estate transaction in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TRANSACTION])
Close Transaction
Marks a real estate transaction as closed in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CLOSE_TRANSACTION])
Generate Report
Creates a custom report in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_REPORT])
New Task Created
Triggered when a new task is created in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_CREATED])
Task Completed
Triggered when a task is marked as completed in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
New Property Listed
Triggered when a new property is listed in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PROPERTY_LISTED])
Property Status Changed
Triggered when a property's status is updated in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROPERTY_STATUS_CHANGED])
Showing Scheduled
Triggered when a new property showing is scheduled in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHOWING_SCHEDULED])
Showing Cancelled
Triggered when a property showing is cancelled in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHOWING_CANCELLED])
New Transaction Started
Triggered when a new real estate transaction is initiated in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TRANSACTION_STARTED])
Transaction Closed
Triggered when a real estate transaction is closed in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRANSACTION_CLOSED])
Document Uploaded
Triggered when a new document is uploaded to Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DOCUMENT_UPLOADED])
Lead Assigned
Triggered when a lead is assigned to an agent in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_ASSIGNED])
Email Campaign Sent
Triggered when an email marketing campaign is sent through Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EMAIL_CAMPAIGN_SENT])
New Review Received
Triggered when a new client review is received in Brivity
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_REVIEW_RECEIVED])
Appointment Created
Triggered when a new appointment is created in Brivity's calendar
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPOINTMENT_CREATED])