Create Entry
Creates a new entry in a specified form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_CREATE_ENTRY])
Update Entry
Updates an existing entry in a specified form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_UPDATE_ENTRY])
Delete Entry
Deletes an entry from a specified form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_DELETE_ENTRY])
Get Entry
Retrieves a specific entry from a form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_GET_ENTRY])
List Entries
Retrieves a list of entries from a specified form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_LIST_ENTRIES])
Add Field
Adds a new field to an existing form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_ADD_FIELD])
Remove Field
Removes a field from an existing form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_REMOVE_FIELD])
Update Field
Updates the properties of an existing field in a form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_UPDATE_FIELD])
Get Report
Retrieves a specific report from Wufoo
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_GET_REPORT])
List Reports
Retrieves a list of all reports in the Wufoo account
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_LIST_REPORTS])
Get Users
Retrieves a list of users with access to the Wufoo account
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_GET_USERS])
Get Fields
Retrieves a list of fields for a specific form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_GET_FIELDS])
New Entry
Triggers when a new form entry is submitted
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_NEW_ENTRY])
New Field Entry
Triggers when a specific field in a form is filled out
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_NEW_FIELD_ENTRY])
Updated Entry
Triggers when an existing form entry is updated
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_UPDATED_ENTRY])
Payment Received
Triggers when a payment is received through a form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_PAYMENT_RECEIVED])
File Upload
Triggers when a file is uploaded through a form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_FILE_UPLOAD])
Entry Limit Reached
Triggers when a form reaches its maximum number of entries
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WUFOO_ENTRY_LIMIT_REACHED])