Integrate Agentforce with Shopify to manage products, orders, customers, and other e-commerce operations.
Tool Name | Description | Example Inputs |
---|---|---|
shopify_create_product | Creates a new product in the Shopify store. | title: "Awesome T-Shirt", body_html: "<strong>Comfortable and stylish!</strong>", vendor: "Agentforce Apparel" |
shopify_get_product | Retrieves details for a specific product by its ID. | product_id: "prod_12345" |
shopify_update_product | Updates an existing product’s details (e.g., price, description, inventory). | product_id: "prod_12345", price: "29.99", inventory_quantity: 100 |
shopify_delete_product | Deletes a product from the store. | product_id: "prod_67890" |
shopify_list_products | Lists products, with optional filters for collection, tags, etc. | collection_id: "col_abc", limit: 50 |
shopify_get_order | Retrieves details for a specific order. | order_id: "ord_xyz123" |
shopify_list_orders | Lists orders, with filters for status, date, customer, etc. | status: "open", financial_status: "paid", limit: 20 |
shopify_update_order_status | Updates the fulfillment or payment status of an order. | order_id: "ord_xyz123", fulfillment_status: "fulfilled", tracking_number: "TN123456789" |
shopify_create_customer | Creates a new customer record. | first_name: "Jane", last_name: "Doe", email: "jane.doe@example.com" |
shopify_get_customer | Retrieves details for a specific customer. | customer_id: "cust_qrs789" |
shopify_update_customer | Updates an existing customer’s information. | customer_id: "cust_qrs789", phone: "+15551234567" |
shopify_manage_inventory | Adjusts inventory levels for a product variant. | variant_id: "var_pqr001", inventory_adjustment: -5 |
read_products
, write_products
, read_orders
, write_orders
, read_customers
, write_customers
).your-store-name.myshopify.com/admin
).write_products
, read_orders
, write_customers
). Be sure to grant only necessary permissions.your-store-name
from your-store-name.myshopify.com
).product_id
, order_id
, or customer_id
being used.