Create Candidate
Creates a new candidate record in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CANDIDATE_ACTION])
Update Candidate
Updates an existing candidate's information in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CANDIDATE_ACTION])
Create Job Opening
Creates a new job opening in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_JOB_OPENING_ACTION])
Close Job Opening
Closes an existing job opening in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CLOSE_JOB_OPENING_ACTION])
Schedule Interview
Schedules an interview for a candidate in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_INTERVIEW_ACTION])
Change Candidate Status
Changes the status of a candidate in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_CANDIDATE_STATUS_ACTION])
Add Note To Candidate
Adds a note to a candidate's profile in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE_TO_CANDIDATE_ACTION])
Send Email To Candidate
Sends an email to a candidate from within Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL_TO_CANDIDATE_ACTION])
Create Task
Creates a new task related to a candidate or job opening
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK_ACTION])
Update Task
Updates an existing task in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK_ACTION])
Associate Candidate With Job Opening
Associates a candidate with a specific job opening
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSOCIATE_CANDIDATE_JOB_OPENING_ACTION])
Generate Offer Letter
Generates an offer letter for a candidate
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_OFFER_LETTER_ACTION])
Update Interview Feedback
Updates the feedback for a conducted interview
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_INTERVIEW_FEEDBACK_ACTION])
Create Client
Creates a new client record in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CLIENT_ACTION])
Update Client
Updates an existing client's information in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CLIENT_ACTION])
Add Attachment To Candidate
Adds an attachment to a candidate's profile
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_ATTACHMENT_TO_CANDIDATE_ACTION])
Create Custom Report
Creates a custom report in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOM_REPORT_ACTION])
Export Candidates
Exports a list of candidates based on specified criteria
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_CANDIDATES_ACTION])
Import Candidates
Imports candidate data from an external source
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_CANDIDATES_ACTION])
Schedule Assessment
Schedules an assessment or test for a candidate
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_ASSESSMENT_ACTION])
New Candidate
Triggered when a new candidate is added to Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CANDIDATE_TRIGGER])
New Job Opening
Triggered when a new job opening is created in Zoho Recruit
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_JOB_OPENING_TRIGGER])
Interview Scheduled
Triggered when an interview is scheduled for a candidate
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INTERVIEW_SCHEDULED_TRIGGER])
Candidate Status Changed
Triggered when a candidate's status is updated
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANDIDATE_STATUS_CHANGED_TRIGGER])
New Application
Triggered when a new job application is received
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_APPLICATION_TRIGGER])
Job Opening Closed
Triggered when a job opening is closed or filled
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JOB_OPENING_CLOSED_TRIGGER])
Candidate Rejected
Triggered when a candidate is rejected
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANDIDATE_REJECTED_TRIGGER])
Offer Extended
Triggered when a job offer is extended to a candidate
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.OFFER_EXTENDED_TRIGGER])
Candidate Hired
Triggered when a candidate is marked as hired
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANDIDATE_HIRED_TRIGGER])
New Note Added
Triggered when a new note is added to a candidate's profile
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_ADDED_TRIGGER])