Add Organizations
Endpoint `/organizations` allows posting organization details with attributes
like description, display name, and more. It supports JSON requests & responds
with success or server rejection st
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_ADD_ORGANIZATIONS])
Delete Organizations By Id Org
This endpoint deletes an organization by its ID (or name), requiring either
an API key or token for access. Parameters include the organization's ID
or name. Responses indicate success or serv
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_DELETE_ORGANIZATIONS_BY_ID_ORG])
Get Organizations By Id Org
This Trello endpoint fetches organization details by `idOrg` or name with
customization options like actions and board details. Requires `api_key`
or `api_token` for security. Indicates succes
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_BY_ID_ORG])
Update Organizations By Id Org
This endpoint updates an organization's details via ID or name with JSON
attributes like description and website, requiring an api_key or api_token.
Responses show success or rejection.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_UPDATE_ORGANIZATIONS_BY_ID_ORG])
Get Organizations Actions By Id Org
Fetch actions for an organization using ID/name with filters for types and
elements. Allows field customization and requires API key/token. Supports
detailed queries and pagination.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_ACTIONS_BY_ID_ORG])
Get Organizations Boards By Id Org
This Trello endpoint fetches organization-associated boards, allowing for
filtering by status, specified field returns, and action data inclusion.
It supports multiple parameters and requires
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_BOARDS_BY_ID_ORG])
Get Organizations Boards By Id Org By Filter
Fetches boards within a specified organization by ID or name, filtered by
the provided criteria. Requires API key and token for authorization. Supports
filters to refine results. Possible resp
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_BOARDS_BY_ID_ORG_BY_FILTER])
Get Organizations Deltas By Id Org
This endpoint fetches deltas for an organization using its ID/name, requiring
an API key/token. It needs an organization ID/name, subscription tag, and
last update index. Responses show succes
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_DELTAS_BY_ID_ORG])
Update Organizations Desc By Id Org
This endpoint updates an organization's description using its ID/name, requiring
an `api_key` or `api_token`. Descriptions must be 0-16384 characters in
JSON. Success and rejection are marked
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_UPDATE_ORGANIZATIONS_DESC_BY_ID_ORG])
Update Organizations Display Name By Id Org
Update an organization's display name by ID or name with authentication.
Requires organization ID or name in path and a JSON request body specifying
the new display name, subject to validation
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_UPDATE_ORGANIZATIONS_DISPLAY_NAME_BY_ID_ORG])
Delete Organizations Logo By Id Org
Deletes an organization's logo by its ID or name. Requires either an API
key or token for security. Response codes: 200 (Success), 400 (Server rejection).
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_DELETE_ORGANIZATIONS_LOGO_BY_ID_ORG])
Add Organizations Logo By Id Org
Endpoint allows uploading a logo for an organization by its ID or name.
Requires API key or token. Accepts a file as JSON. Responses include success
or server rejection.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_ADD_ORGANIZATIONS_LOGO_BY_ID_ORG])
Get Organizations Members By Id Org
Fetches members of an organization by ID/name with role filtering. Customizable
member fields. Access requires API key/token. Filters: admins, all (default),
none, normal, owners.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_MEMBERS_BY_ID_ORG])
Update Organizations Members By Id Org
This endpoint updates organization members by ID/name, requiring an API
key and member details (email, name, type) in JSON. It signals success with
a 200 response and failure with a 200.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_UPDATE_ORGANIZATIONS_MEMBERS_BY_ID_ORG])
Get Organizations Members By Id Org By Filter
Retrieves a filtered member list from an organization using its ID or name,
requiring 'api_key' and 'api_token' for access. Filters must be valid. Responses
are 'Success' or 'Server rejection'
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_MEMBERS_BY_ID_ORG_BY_FILTER])
Delete Organizations Members By Id Org By Id Member
This endpoint removes a member from an organization by their IDs. It requires
`idOrg` (or organization name) and `idMember` in the path with both `api_key`
and `api_token` for security. Respon
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_DELETE_ORGANIZATIONS_MEMBERS_BY_ID_ORG_BY_ID_MEMBER])
Update Organizations Members By Id Org By Id Member
This endpoint updates member details in an organization using IDs and needs
an `api_key` or `api_token`. It accepts a JSON body with the member's email,
name, and type, and confirms updates or
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_UPDATE_ORGANIZATIONS_MEMBERS_BY_ID_ORG_BY_ID_MEMBER])
Delete Organizations Members All By Id Org By Id Member
Removes all associations of a member with the specified organization. Requires
both organization ID/name and member ID. Supports `api_key` and `api_token`
for security. Responses include succe
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_DELETE_ORGANIZATIONS_MEMBERS_ALL_BY_ID_ORG_BY_ID_MEMBER])
Get Organizations Members Cards By Id Org By Id Member
This endpoint retrieves cards of a member within an organization in Trello
by organization and member IDs. It supports filters for actions, attachments,
and more, with customizable fields for
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_GET_ORGANIZATIONS_MEMBERS_CARDS_BY_ID_ORG_BY_ID_MEMBER])
Update Organizations Members Deactivated By Id Org By Id Member
The `PUT /organizations/{idOrg}/members/{idMember}/deactivated` endpoint
changes a member's status using 'idOrg', 'idMember', and JSON. It requires
'api_key' and 'api_token' for authentication
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRELLO_UPDATE_ORGANIZATIONS_MEMBERS_DEACTIVATED_BY_ID_ORG_BY_ID_MEMBER])