Add New Client
Creates a new client profile in the system
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NEW_CLIENT])
Generate Dispute Letter
Creates a dispute letter for a specific credit item
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_DISPUTE_LETTER])
Import Credit Report
Imports a new credit report for a client
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_CREDIT_REPORT])
Schedule Appointment
Schedules a new appointment with a client
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_APPOINTMENT])
Create Task
Creates a new task for a client or team member
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Send Client Message
Sends a message to a client through the system
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_CLIENT_MESSAGE])
Generate Credit Report Analysis
Creates an analysis report based on a client's credit report
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_CREDIT_REPORT_ANALYSIS])
Update Credit Item Status
Updates the status of a specific credit item for a client
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CREDIT_ITEM_STATUS])
Create Invoice
Generates a new invoice for a client
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Upload Document
Uploads a new document to a client's profile
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPLOAD_DOCUMENT])
Generate Progress Report
Creates a progress report for a client's credit repair journey
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_PROGRESS_REPORT])
Update Credit Score
Manually updates a client's credit score in the system
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CREDIT_SCORE])
Cancel Subscription
Cancels a client's subscription to the credit repair service
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANCEL_SUBSCRIPTION])
Generate Affiliate Report
Creates a report for affiliate performance and commissions
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_AFFILIATE_REPORT])
Update Company Settings
Updates the company settings in the Credit Repair Cloud system
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_COMPANY_SETTINGS])
Create Custom Letter Template
Creates a new custom letter template for dispute letters
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOM_LETTER_TEMPLATE])
Generate Financial Summary
Creates a financial summary report for the business
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_FINANCIAL_SUMMARY])
Bulk Import Clients
Imports multiple client profiles at once from a CSV file
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BULK_IMPORT_CLIENTS])
Export Client Data
Exports client data in a specified format for backup or analysis
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_CLIENT_DATA])
New Client Added
Triggered when a new client is added to the system
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CLIENT_ADDED])
Client Status Changed
Triggered when a client's status is updated
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CLIENT_STATUS_CHANGED])
Dispute Letter Sent
Triggered when a dispute letter is sent to a credit bureau
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DISPUTE_LETTER_SENT])
Credit Report Imported
Triggered when a new credit report is imported into the system
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREDIT_REPORT_IMPORTED])
Credit Score Updated
Triggered when a client's credit score is updated
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREDIT_SCORE_UPDATED])
Payment Received
Triggered when a payment is received from a client
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAYMENT_RECEIVED])
Task Completed
Triggered when a task is marked as completed
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
Appointment Scheduled
Triggered when a new appointment is scheduled with a client
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPOINTMENT_SCHEDULED])
Document Uploaded
Triggered when a new document is uploaded to a client's profile
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DOCUMENT_UPLOADED])
Dispute Response Received
Triggered when a response is received for a dispute
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DISPUTE_RESPONSE_RECEIVED])