Create Donation
Record a new donation in Little Green Light, including amount, date, and donor information.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DONATION])
Create Campaign
Set up a new fundraising campaign in Little Green Light with goals and timeframe.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CAMPAIGN])
Add Task
Create a new task or to-do item in Little Green Light, assigning it to a team member.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TASK])
Create Event
Set up a new event in Little Green Light, including details like date, location, and capacity.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_EVENT])
Add Note
Add a note to a contact's record in Little Green Light for tracking interactions or important information.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE])
Create Pledge
Record a new pledge in Little Green Light, including amount, timeline, and donor information.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PLEDGE])
Update Donation
Modify existing donation information in Little Green Light database.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DONATION])
Create Acknowledgment
Generate a thank you letter or acknowledgment for a donation in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ACKNOWLEDGMENT])
Create Report
Generate a custom report in Little Green Light based on specified criteria and data points.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_REPORT])
Update Event
Modify existing event information in Little Green Light, such as date, location, or attendees.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_EVENT])
Create Volunteer Opportunity
Set up a new volunteer opportunity in Little Green Light with details and requirements.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_VOLUNTEER_OPPORTUNITY])
Send Email
Send an email to a contact or group of contacts directly from Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL])
Donation Received
Triggered when a new donation is recorded in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DONATION_RECEIVED])
Event Registration
Triggered when someone registers for an event in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EVENT_REGISTRATION])
Campaign Goal Reached
Triggered when a fundraising campaign in Little Green Light reaches its goal.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CAMPAIGN_GOAL_REACHED])
Task Completed
Triggered when a task is marked as completed in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
Pledge Made
Triggered when a new pledge is recorded in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PLEDGE_MADE])
Volunteer Sign Up
Triggered when someone signs up for a volunteer opportunity in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.VOLUNTEER_SIGN_UP])
Donation Threshold Reached
Triggered when a donor's cumulative donations reach a specified threshold in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DONATION_THRESHOLD_REACHED])
Event Capacity Reached
Triggered when an event in Little Green Light reaches its maximum capacity for attendees.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EVENT_CAPACITY_REACHED])
Membership Expiration
Triggered when a member's membership is about to expire or has expired in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEMBERSHIP_EXPIRATION])
New Note Added
Triggered when a new note is added to a contact's record in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_ADDED])
Report Generated
Triggered when a custom report is generated in Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REPORT_GENERATED])
Donation Acknowledged
Triggered when a donation acknowledgment is sent through Little Green Light.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DONATION_ACKNOWLEDGED])