Skip to main content

Shopify

The Shopify node lets you manage your Shopify store from within an orchestration — read and update orders, products, customers, and inventory. Shopify Node

Credentials

This node requires a Shopify credential with API access configured in your Shopify admin. To create a credential:
  1. Go to Settings → Credentials → New Credential
  2. Select Shopify
  3. Enter your Shopify store URL and API access token

Operations

Order

OperationDescription
GetRetrieve a single order by ID
Get ManyList orders with optional filters
CreateCreate a new draft order
UpdateUpdate order fields or status
DeleteDelete an order
FulfillFulfill an order or fulfillment
CancelCancel an order

Product

OperationDescription
GetRetrieve a single product by ID
Get ManyList products with optional filters
CreateCreate a new product
UpdateUpdate product details, variants, or images
DeleteDelete a product

Customer

OperationDescription
GetRetrieve a customer by ID or email
Get ManyList customers
CreateCreate a new customer
UpdateUpdate customer details
DeleteDelete a customer

Inventory

OperationDescription
Adjust LevelIncrease or decrease inventory at a location
Set LevelSet inventory to a specific quantity
Get LevelGet current inventory level

Parameters: Get Many Orders

ParameterTypeRequiredDescription
CredentialCredentialYesSelect or create a Shopify credential
StatusSelectNoFilter by order status: open, closed, cancelled, any
Financial StatusSelectNoFilter by payment status: paid, pending, refunded, etc.
Fulfillment StatusSelectNoFilter by fulfillment status
Created At MinDateTimeNoReturn orders created after this time
Created At MaxDateTimeNoReturn orders created before this time
LimitNumberNoMaximum number of orders to return

Output Data

A single order from Get Order:
{
  "id": 5678901234,
  "name": "#1001",
  "email": "[email protected]",
  "total_price": "99.00",
  "currency": "USD",
  "financial_status": "paid",
  "fulfillment_status": null,
  "line_items": [
    {
      "id": 1234567890,
      "title": "Blue T-Shirt",
      "quantity": 2,
      "price": "49.50"
    }
  ],
  "created_at": "2025-03-10T09:00:00-05:00"
}
Reference fields:
{{ shopify.name }}
{{ shopify.email }}
{{ shopify.financial_status }}
{{ shopify.line_items[0].title }}

  • Shopify Trigger — Trigger on Shopify store events
  • Slack — Notify a team channel when an order is created or updated
  • HTTP Request — Call custom Shopify API endpoints not covered by this node