Download Game
Initiates the download of a game from the Epic Games Store
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DOWNLOAD_GAME])
Purchase Game
Completes the purchase of a game on the Epic Games Store
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PURCHASE_GAME])
Add To Wishlist
Adds a game to the user's wishlist on Epic Games
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TO_WISHLIST])
Remove From Wishlist
Removes a game from the user's wishlist on Epic Games
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_FROM_WISHLIST])
Send Friend Request
Sends a friend request to another Epic Games user
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_FRIEND_REQUEST])
Accept Friend Request
Accepts a pending friend request on Epic Games
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACCEPT_FRIEND_REQUEST])
Create Party
Creates a new party in an Epic Games multiplayer title
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PARTY])
Join Party
Joins an existing party in an Epic Games multiplayer title
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.JOIN_PARTY])
Leave Party
Leaves the current party in an Epic Games multiplayer title
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAVE_PARTY])
Start Game
Launches a game from the Epic Games library
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.START_GAME])
Update Game
Initiates an update for a game in the Epic Games library
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_GAME])
Redeem Code
Redeems a promotional code on the Epic Games platform
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REDEEM_CODE])
Set Game Rating
Sets a user's rating for a game on the Epic Games Store
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_GAME_RATING])
Write Game Review
Submits a user's review for a game on the Epic Games Store
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.WRITE_GAME_REVIEW])
Change Account Settings
Modifies user account settings on the Epic Games platform
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_ACCOUNT_SETTINGS])
Enable Two Factor Authentication
Enables two-factor authentication for the Epic Games account
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ENABLE_2FA])
Link External Account
Links an external account (e.g., Steam, PlayStation) to the Epic Games account
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LINK_EXTERNAL_ACCOUNT])
Share Game Achievement
Shares a game achievement on connected social media platforms
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_ACHIEVEMENT])
Create Support Ticket
Creates a new support ticket for Epic Games customer service
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SUPPORT_TICKET])
Set Parental Controls
Configures parental control settings for the Epic Games account
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_PARENTAL_CONTROLS])
New Game Released
Triggered when a new game is released on the Epic Games Store
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_GAME_RELEASED])
Game Sale Started
Triggered when a game goes on sale in the Epic Games Store
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GAME_SALE_STARTED])
Free Game Available
Triggered when a new free game becomes available on Epic Games
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FREE_GAME_AVAILABLE])
Achievement Unlocked
Triggered when a player unlocks an achievement in an Epic Games title
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACHIEVEMENT_UNLOCKED])
Friend Request Received
Triggered when a user receives a new friend request on Epic Games
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.FRIEND_REQUEST_RECEIVED])
Game Update Available
Triggered when an update is available for a game in the user's library
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GAME_UPDATE_AVAILABLE])
Player Joined Party
Triggered when a player joins a party in an Epic Games multiplayer title
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PLAYER_JOINED_PARTY])
Player Left Party
Triggered when a player leaves a party in an Epic Games multiplayer title
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PLAYER_LEFT_PARTY])
New In Game Purchase
Triggered when a player makes a new in-game purchase
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INGAME_PURCHASE])
Game Wishlist Update
Triggered when a user adds or removes a game from their wishlist
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GAME_WISHLIST_UPDATE])