Create Order
Creates a new order in Amazon Seller Central
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ORDER_ACTION])
Update Order Status
Updates the status of an existing order
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ORDER_STATUS_ACTION])
Cancel Order
Cancels an existing order in Amazon Seller Central
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANCEL_ORDER_ACTION])
Update Inventory
Updates the inventory quantity for a specific product
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_INVENTORY_ACTION])
Create Product Listing
Creates a new product listing on Amazon Seller Central
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PRODUCT_LISTING_ACTION])
Update Product Listing
Updates an existing product listing with new information
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PRODUCT_LISTING_ACTION])
Remove Product Listing
Removes a product listing from Amazon Seller Central
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_PRODUCT_LISTING_ACTION])
Create Shipment
Creates a new shipment for fulfilling orders
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SHIPMENT_ACTION])
Generate Report
Generates a specified report (e.g., sales, inventory) from Amazon Seller Central
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_REPORT_ACTION])
Respond To Customer Message
Sends a response to a customer message
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RESPOND_TO_CUSTOMER_MESSAGE_ACTION])
Create Return Label
Generates a return label for a customer's return request
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_RETURN_LABEL_ACTION])
Update Return Status
Updates the status of a return request
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_RETURN_STATUS_ACTION])
Update Pricing
Updates the price of a product or a group of products
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PRICING_ACTION])
Request Product Review
Sends a request to a customer to leave a product review
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REQUEST_PRODUCT_REVIEW_ACTION])
Create Fulfillment Order
Creates a fulfillment order for FBA (Fulfillment by Amazon) inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_FULFILLMENT_ORDER_ACTION])
Update Brand Content
Updates the A+ Content or Enhanced Brand Content for a product
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_BRAND_CONTENT_ACTION])
Create Advertising Campaign
Creates a new advertising campaign for products
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ADVERTISING_CAMPAIGN_ACTION])
Update Advertising Campaign
Updates an existing advertising campaign
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ADVERTISING_CAMPAIGN_ACTION])
New Order
Triggered when a new order is placed on Amazon Seller Central
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ORDER_TRIGGER])
Order Status Change
Triggered when the status of an order changes (e.g., from pending to shipped)
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ORDER_STATUS_CHANGE_TRIGGER])
Low Inventory Alert
Triggered when inventory for a product falls below a specified threshold
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOW_INVENTORY_ALERT_TRIGGER])
New Product Review
Triggered when a new customer review is posted for a product
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PRODUCT_REVIEW_TRIGGER])
Price Change
Triggered when the price of a product changes
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PRICE_CHANGE_TRIGGER])
New Return Request
Triggered when a customer initiates a return request
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_RETURN_REQUEST_TRIGGER])
Listing Update
Triggered when a product listing is updated
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LISTING_UPDATE_TRIGGER])
Account Health Alert
Triggered when there's a change in the seller's account health status
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACCOUNT_HEALTH_ALERT_TRIGGER])
New Message
Triggered when a new message is received from a buyer
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_MESSAGE_TRIGGER])