streamline

n8n node for the Streamline Connector API integration

Package Information

Downloads: 205 weekly / 527 monthly
Latest Version: 0.4.3
Author: Streamline Connector

Documentation

n8n-nodes-streamline

n8n.io - Workflow Automation

This is an n8n community node that connects your Shopify eCommerce data to n8n through the Streamline Connector API. It enables you to retrieve products, orders, and inventory data from Shopify to automate workflows and integrate with other services.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources
Version History

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

For users on n8n v0.187.0+:

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-streamline in Enter npm package name
  4. Agree to the risks of using community nodes
  5. Select Install

After installation, the Streamline node will be available in your nodes panel.

Manual Installation

For self-hosted n8n instances:

cd ~/.n8n/custom
npm install n8n-nodes-streamline

Restart n8n and the Streamline node will appear in your node list.

Docker

To use this node with Docker:

docker run -it --rm \
  -p 5678:5678 \
  -v ~/.n8n:/home/node/.n8n \
  -v ~/.n8n/custom:/home/node/custom \
  -e N8N_CUSTOM_EXTENSIONS="/home/node/custom/node_modules/n8n-nodes-streamline" \
  n8nio/n8n

Operations

The Streamline node supports the following operations:

Resource Operation Description
Get an order Get an order Get an order using email or order number (/api/order-data)
Get many orders Get many orders Get paginated list of all orders (/api/order-data, page & size)
Get AI Product Recommendation Get Recommendations Get AI-based product suggestions (/products/recommendations)
Get a product Get a product Get a product by title – inventory/stock (/products/inventory)
Get Inventory Locations Get Inventory Locations Retrieve store locations (/products/locations)
Create a Discount Create a discount Create a new discount code (/api/create-discount-code)

Credentials

To use the Streamline node, you need to set up Streamline API credentials:

  1. In n8n, go to Credentials → New
  2. Search for and select Streamline API
  3. Enter your credentials:
    • Streamline Shop ID – Your Streamline access key (found in the app dashboard > Any endpoint page)
  4. Click Save and test the connection

Once configured, select these credentials when using any Streamline node in your workflows.

Getting API Credentials

To obtain your Streamline API credentials:

  1. Visit Streamline Connector
  2. Sign up or log in to your account
  3. Navigate to your API settings
  4. Generate or copy your API key

Compatibility

  • Minimum n8n version: 0.187.0
  • Tested with n8n version: 1.0.0+
  • Node.js version: 22+

Usage

Example Workflows

Here are some common use cases for the Streamline node:

1. Sync Orders to Google Sheets

  • Trigger: Schedule (every hour)
  • Streamline Node: Get Orders
  • Google Sheets: Append data
  • Use case: Create automated sales reports

2. Low Stock Alerts

  • Trigger: Schedule (daily)
  • Streamline Node: Get Inventory
  • IF Node: Check if stock < threshold
  • Slack/Email Node: Send alert
  • Use case: Monitor inventory levels

3. Product Catalog Integration

  • Trigger: Manual or Schedule
  • Streamline Node: Get Products
  • Your Service: Update product database
  • Use case: Maintain product information across platforms

Tips

  • Use the Schedule Trigger node to automate regular data syncs
  • Combine with IF nodes to create conditional workflows
  • Use Set nodes to transform data before sending to other services
  • Enable Error Workflows to handle API errors gracefully

Resources

Support

For issues and questions:

Development

Prerequisites

  • Node.js v22 or higher
  • npm
  • n8n (included as dev dependency)

Setup

# Clone the repository
git clone https://github.com/streamline-connector/n8n-nodes-streamline.git
cd n8n-nodes-streamline

# Install dependencies
npm install

# Build the node
npm run build

Local Development

Start n8n with your node loaded:

npm run dev

This command:

  • Builds your node with watch mode enabled
  • Starts n8n with your node available
  • Automatically rebuilds when you make changes
  • Opens n8n in your browser at http://localhost:5678

Testing

Run linting:

npm run lint

Auto-fix linting issues:

npm run lint:fix

Building for Production

npm run build

This compiles TypeScript code to the dist/ folder.

Version History

See CHANGELOG.md for detailed version history.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Made with ❤️ by Streamline Connector

Discussion