--- title: 'WooCommerce' description: 'Manage products, orders, and customers on WooCommerce stores.' --- # WooCommerce Manage products, orders, and customers on WooCommerce stores. | Detail | Value | |---|---| | Category | E-commerce | | Base URL | `https://{store_url}/wp-json/wc/v3` | | Authentication | Bearer Token | | Endpoints | 6 | | Connector key | `woocommerce` | ## Using WooCommerce in a workflow 1. Go to **Connections** and click **New Connection**. 2. Pick **WooCommerce** from the marketplace. 3. Enter your credentials (see Authentication above for what's expected). 4. In a workflow, drop an **API Call** node and select this connection. 5. Pick the operation you need from the Operation dropdown — see the table below. ## Available Endpoints | Endpoint | Summary | |---|---| | [GET /products](./get_products_ecommerce_listproducts) | List products | | [POST /products](./post_products_ecommerce_createproduct) | Create a product | | [GET /products/{id}](./get_products_id_ecommerce_getproduct) | Get a product | | [GET /orders](./get_orders_ecommerce_listorders) | List orders | | [GET /orders/{id}](./get_orders_id_ecommerce_getorder) | Get an order | | [GET /customers](./get_customers_ecommerce_listcustomers) | List customers | > Each endpoint has its own page with parameter details, an example > `API Call` node configuration, and the response shape.