Create User
Create a new user in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_USER])
Delete User
Remove a user from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_USER])
Update User
Modify user properties in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_USER])
Get User
Retrieve user information from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GET_USER])
Create Group
Create a new group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_GROUP])
Delete Group
Remove a group from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_GROUP])
Update Group
Modify group properties in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_GROUP])
Get Group
Retrieve group information from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GET_GROUP])
Add User To Group
Add a user as a member of a group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_USER_TO_GROUP])
Remove User From Group
Remove a user from a group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_USER_FROM_GROUP])
Assign Role
Assign a role to a user or group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ASSIGN_ROLE])
Remove Role Assignment
Remove a role assignment from a user or group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_ROLE_ASSIGNMENT])
Create Application
Register a new application in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_APPLICATION])
Delete Application
Remove an application registration from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_APPLICATION])
Update Application
Modify application properties in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_APPLICATION])
Reset User Password
Reset the password for a user in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RESET_USER_PASSWORD])
Enable User
Enable a disabled user account in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ENABLE_USER])
Disable User
Disable a user account in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DISABLE_USER])
Create Service Principal
Create a new service principal in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SERVICE_PRINCIPAL])
Delete Service Principal
Remove a service principal from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_SERVICE_PRINCIPAL])
User Created
Triggered when a new user is created in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_CREATED])
User Deleted
Triggered when a user is deleted from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_DELETED])
User Updated
Triggered when a user's properties are updated in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_UPDATED])
Group Created
Triggered when a new group is created in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GROUP_CREATED])
Group Deleted
Triggered when a group is deleted from Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GROUP_DELETED])
Group Updated
Triggered when a group's properties are updated in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GROUP_UPDATED])
User Added To Group
Triggered when a user is added to a group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_ADDED_TO_GROUP])
User Removed From Group
Triggered when a user is removed from a group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_REMOVED_FROM_GROUP])
Role Assigned
Triggered when a role is assigned to a user or group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ROLE_ASSIGNED])
Role Unassigned
Triggered when a role is removed from a user or group in Azure Active Directory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ROLE_UNASSIGNED])