Skip to content
For LLMsView as Markdown·

WooCommerce

Manage products, orders, and customers on WooCommerce stores.

DetailValue
CategoryE-commerce
Base URLhttps://{store_url}/wp-json/wc/v3
AuthenticationBearer Token
Endpoints6
Connector keywoocommerce

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 — the full list is below.

Available endpoints

EndpointSummary
GET /productsList products
POST /productsCreate a product
GET /products/{id}Get a product
GET /ordersList orders
GET /orders/{id}Get an order
GET /customersList customers

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /products

List products

DetailValue
Operation IDecommerce.listProducts
MethodGET
Path/products

Parameters

NameLocationTypeRequired
per_pagequeryintegerNo
pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your WooCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.listProducts.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream WooCommerce API reference.

POST /products

Create a product

DetailValue
Operation IDecommerce.createProduct
MethodPOST
Path/products

Parameters

No parameters.

Request Body

FieldType
namestring
regular_pricestring
typestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your WooCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.createProduct.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream WooCommerce API reference.

GET /products/{id}

Get a product

DetailValue
Operation IDecommerce.getProduct
MethodGET
Path/products/{id}

Parameters

NameLocationTypeRequired
idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your WooCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.getProduct.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream WooCommerce API reference.

GET /orders

List orders

DetailValue
Operation IDecommerce.listOrders
MethodGET
Path/orders

Parameters

NameLocationTypeRequired
per_pagequeryintegerNo
statusquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your WooCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.listOrders.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream WooCommerce API reference.

GET /orders/{id}

Get an order

DetailValue
Operation IDecommerce.getOrder
MethodGET
Path/orders/{id}

Parameters

NameLocationTypeRequired
idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your WooCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.getOrder.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream WooCommerce API reference.

GET /customers

List customers

DetailValue
Operation IDecommerce.listCustomers
MethodGET
Path/customers

Parameters

NameLocationTypeRequired
per_pagequeryintegerNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your WooCommerce connection from the Connection dropdown.
  3. In the Operation dropdown, select ecommerce.listCustomers.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream WooCommerce API reference.