Create New Lead
Creates a new lead in AccuLynx with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LEAD])
Update Job Status
Updates the status of an existing job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_JOB_STATUS])
Schedule Appointment
Schedules a new appointment for a specific job or lead in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_APPOINTMENT])
Create Estimate
Creates a new estimate for a job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ESTIMATE])
Generate Invoice
Generates an invoice for a completed job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_INVOICE])
Add Task
Adds a new task to a job or project in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TASK])
Update Customer Information
Updates the information for an existing customer in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CUSTOMER_INFO])
Create Purchase Order
Creates a new purchase order for materials or services in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PURCHASE_ORDER])
Add Note To Job
Adds a note to an existing job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_JOB_NOTE])
Upload Document
Uploads a document and associates it with a job or customer in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPLOAD_DOCUMENT])
Create Subcontractor
Adds a new subcontractor to the AccuLynx system.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SUBCONTRACTOR])
Assign Job To Team Member
Assigns a job to a specific team member in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_JOB])
Create Material Order
Creates a new material order for a job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MATERIAL_ORDER])
Update Job Stage
Moves a job to a different stage in the AccuLynx workflow.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_JOB_STAGE])
Send Customer Communication
Sends an email or text message to a customer through AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_CUSTOMER_COMMUNICATION])
New Lead Created
Triggers when a new lead is created in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_TRIGGER])
Job Status Changed
Triggers when the status of a job is updated in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JOB_STATUS_CHANGED_TRIGGER])
Estimate Approved
Triggers when a customer approves an estimate in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ESTIMATE_APPROVED_TRIGGER])
Invoice Paid
Triggers when an invoice is marked as paid in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVOICE_PAID_TRIGGER])
Appointment Scheduled
Triggers when a new appointment is scheduled in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPOINTMENT_SCHEDULED_TRIGGER])
Task Completed
Triggers when a task is marked as completed in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED_TRIGGER])
Document Uploaded
Triggers when a new document is uploaded to AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DOCUMENT_UPLOADED_TRIGGER])
Job Stage Advanced
Triggers when a job moves to the next stage in the AccuLynx workflow.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JOB_STAGE_ADVANCED_TRIGGER])
Customer Information Updated
Triggers when customer information is updated in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CUSTOMER_INFO_UPDATED_TRIGGER])
New Team Member Added
Triggers when a new team member is added to AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TEAM_MEMBER_TRIGGER])
Material Order Placed
Triggers when a new material order is placed in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MATERIAL_ORDER_PLACED_TRIGGER])
Subcontractor Assigned
Triggers when a subcontractor is assigned to a job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SUBCONTRACTOR_ASSIGNED_TRIGGER])
Job Completed
Triggers when a job is marked as completed in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JOB_COMPLETED_TRIGGER])
Customer Feedback Received
Triggers when customer feedback is received for a job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CUSTOMER_FEEDBACK_TRIGGER])
Warranty Claim Filed
Triggers when a warranty claim is filed for a completed job in AccuLynx.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WARRANTY_CLAIM_TRIGGER])