Description

+
A powerful n8n community node for Shopier API integration
Seamlessly automate your Shopier e-commerce workflows with n8n
What is this?
A custom n8n node for integrating with Shopier API. This node enables seamless automation workflows between Shopier and other services through n8n's visual workflow builder.
What is n8n?
n8n is a fair-code licensed workflow automation platform that lets you connect different services and automate tasks visually.
Table of Contents
Installation
Follow the installation guide in the n8n community nodes documentation.
Quick Install via n8n Community Nodes
- Go to Settings > Community Nodes
- Select Install
- Enter
n8n-nodes-shopier - Agree to the risks: I understand the risks of installing unverified code from a public source
- Select Install
That's it! After installation, the Shopier node will be available in your n8n palette.
Features
This Shopier node provides comprehensive integration with the Shopier API, supporting:
Products
-
Get Many– Retrieve all products with comprehensive filtering options:- Status Filters: Active, Inactive, Draft products
- Category Filtering: Filter by specific category ID
- Product Identification: SKU and name filtering
- Date Range: Filter by creation date range (created_from, created_to)
- Pagination: Efficient data retrieval with limit controls
- Return All: Option to retrieve all products with automatic pagination
-
Get– Retrieve a specific product by ID with detailed information
Credentials
To use this node, you need to authenticate with Shopier using your API credentials. Here's how to set it up:
Prerequisites
- You must have a Shopier account
- Access to Shopier Developer Panel for API credential generation
Authentication Setup
- Log in to your Shopier account
- Navigate to the Developer Panel or API settings
- Generate a Personal Access Token
- Note down your Personal Access Token
Credential Configuration
When setting up the Shopier API credentials in n8n:
- Personal Access Token: Your Shopier Personal Access Token for API authentication
The node uses Bearer Token authentication with your Personal Access Token.
Compatibility
- Minimum n8n version: 1.0.0
- Node version: 1.0
- Tested with: n8n 1.x
- Node.js: >=22.16
This node uses the Shopier API and should be compatible with all current Shopier configurations.
Usage
Quick Start
- Install the node using n8n's community node installation process
- Set up your Shopier API credentials
- Create a new workflow and add the Shopier node
- Configure your desired operation (Product management)
Resource Operations
Product Operations: Retrieve and filter your product catalog with comprehensive filtering options matching official Shopier API specifications.
Advanced Configuration
Pagination: Use limit parameters for large datasets to efficiently manage API calls and response sizes.
Advanced Product Filtering: Apply comprehensive filters following official Shopier API specification:
- Status Filters: active, inactive, draft
- Identification: sku, name, category_id
- Date Filtering: created_from, created_to for creation date range
- Pagination: limit parameter for efficient data retrieval
Error Handling: The node includes comprehensive error handling with detailed error messages for troubleshooting.
Contributing
We welcome contributions from the community! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.
How to Contribute
- Fork the Repository: Click the "Fork" button on GitHub to create your own copy
- Clone Your Fork:
git clone https://github.com/YOUR_USERNAME/n8n-nodes-shopier.git - Create a Branch:
git checkout -b feature/your-feature-name - Make Your Changes: Implement your feature or fix
- Test Your Changes: Ensure everything works correctly
- Commit Your Changes:
git commit -am 'Add some feature' - Push to Your Branch:
git push origin feature/your-feature-name - Create a Pull Request: Submit your changes for review
Code Standards
- Follow the existing TypeScript code style
- Use meaningful variable and function names
- Add JSDoc comments for new functions
- Ensure all new code is properly typed
Reporting Issues
Found a bug or have a feature request? Please check existing issues first, then create a new issue with:
- Clear description of the problem or request
- Steps to reproduce (for bugs)
- Expected vs actual behavior
- Your environment details (n8n version, Node.js version, etc.)
Development Setup
Prerequisites
- Node.js >=22.16
- n8n (for testing)
- Shopier Account with API access
Setup Instructions
-
Clone the Repository
git clone https://github.com/YOUR_USERNAME/n8n-nodes-shopier.git cd n8n-nodes-shopier -
Install Dependencies
npm install -
Build the Project
npm run build -
Linting and Formatting
npm run lint # Check for linting issues npm run lintfix # Fix auto-fixable issues npm run format # Format code with prettier
Project Structure
├── credentials/ # Authentication credential definitions
│ └── ShopierApi.credentials.ts
├── nodes/
│ └── Shopier/
│ ├── Shopier.node.ts # Main node orchestrator
│ ├── GenericFunctions.ts # Shared utility functions
│ ├── types/ # TypeScript type definitions
│ │ └── index.ts
│ ├── operations/ # Resource operation implementations
│ │ ├── index.ts
│ │ └── product.operations.ts
│ ├── node-definition/ # Node UI property definitions
│ │ ├── index.ts
│ │ ├── resources.ts
│ │ ├── operations.ts
│ │ └── fields.ts
│ ├── endpoints/ # API endpoint definitions
│ │ └── products.endpoints.ts
│ └── shopier.svg # Node icon
├── dist/ # Compiled output
├── gulpfile.js # Build configuration
├── package.json # Project configuration
└── tsconfig.json # TypeScript configuration
Testing Your Changes
- Build the project:
npm run build - Link to n8n: Follow n8n's community node development guide
- Test your changes in n8n workflows
- Verify all operations work as expected with real Shopier API
Resources
- n8n Community Nodes Documentation
- n8n Node Development Guide
- Shopier Developer Documentation
- Shopier API Documentation
License
This project is licensed under the MIT License – see the LICENSE.md file for details.
Acknowledgments
- Thanks to the n8n team for creating an amazing workflow automation platform
- Thanks to Shopier for providing a comprehensive e-commerce API
- Thanks to all contributors who help improve this node
Need Help?
- Check out the Issues for common problems
- Create a new issue if you can't find a solution
- Join the n8n community for general n8n support
- Review Shopier API documentation for API-specific questions