npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-vtex-apis

v0.3.2

Published

n8n community node for VTEX e-commerce platform

Readme

n8n-nodes-vtex-apis

This is an n8n community node that lets you interact with the VTEX e-commerce platform in your n8n workflows.

VTEX is a leading enterprise e-commerce platform for Latin America and beyond. This node provides access to the VTEX APIs for catalog management, orders, inventory, pricing, and more.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Node Installation

  1. Go to Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-vtex-apis in Enter npm package name.
  4. Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
  5. Select Install.

After installing the node, you can use it like any other node. n8n displays the node in search results in the Nodes panel.

Manual Installation

To get started locally, install the dependencies and build the code:

npm install
npm run build

Then link the node to your n8n installation:

npm link
cd ~/.n8n/nodes
npm link n8n-nodes-vtex-apis

Operations

This node currently supports the following operations:

Product

  • Create - Create a new product
  • Get - Retrieve a product by ID
  • Get Many - List multiple products
  • Update - Update an existing product
  • Delete - Delete a product

SKU

  • Create - Create a new SKU for a product
  • Get - Retrieve a SKU by ID
  • Get Many - List multiple SKUs
  • Update - Update an existing SKU

Order

  • Get - Retrieve an order by ID
  • Get Many - List multiple orders with filters
  • Start Handling - Start handling an order
  • Cancel - Cancel an order

Category

  • Create - Create a new category
  • Get - Retrieve a category by ID
  • Get Many - List all categories (tree structure)
  • Update - Update an existing category
  • Delete - Delete a category

Brand

  • Create - Create a new brand
  • Get - Retrieve a brand by ID
  • Get Many - List all brands
  • Update - Update an existing brand
  • Delete - Delete a brand

Inventory

  • Get - Get inventory for a SKU
  • Update - Update inventory quantity by warehouse

Pricing

  • Get - Get price for a SKU
  • Create or Update - Set price for a SKU
  • Delete - Delete price for a SKU

Warehouse

  • Create - Create a new warehouse
  • Get - Retrieve a warehouse by ID
  • Get Many - List all warehouses
  • Update - Update an existing warehouse
  • Delete - Delete a warehouse

Promotion 🆕

  • Create - Create a new promotion with percentage or fixed discount
  • Get - Retrieve a promotion by ID
  • Get Many - List promotions (with archived filter)
  • Update - Update a promotion
  • Archive - Archive a promotion
  • Unarchive - Reactivate an archived promotion

Coupon 🆕

  • Create - Create a coupon with custom code
  • Get - Retrieve a coupon by code
  • Get Many - List all coupons
  • Archive - Archive a coupon

Master Data (CRM) 🆕

  • Create Document - Create a document in any Master Data entity
  • Get Document - Retrieve a document with field selection
  • Update Document - Update a document
  • Delete Document - Delete a document
  • Search Documents - Search with advanced filters and pagination
  • Get Client by Email - Quick client lookup by email

Product Search 🆕

  • Search - Advanced product search with filters, categories, and sorting
  • Get by Identifier - Find products by ID, EAN, Reference ID, or SKU ID

Credentials

To use this node, you need VTEX API credentials:

  1. Go to your VTEX Admin
  2. Navigate to Account Settings → Account → Security → Application Keys
  3. Click Generate access key
  4. Save your App Key and App Token securely
  5. In n8n, create new credentials for "VTEX API" and enter:
    • Account Name: Your VTEX account name (e.g., mystore)
    • Environment: Usually vtexcommercestable
    • App Key: Your VTEX App Key
    • App Token: Your VTEX App Token

Required Permissions

Your App Key needs appropriate permissions depending on which operations you'll use:

  • Catalog API - For product and SKU operations
  • OMS API - For order operations
  • Pricing API - For pricing operations
  • Logistics API - For inventory and warehouse operations

Compatibility

This node is compatible with n8n version 1.0.0 and above.

Tested with:

  • n8n v1.0+
  • Node.js 18+

Usage

Example: Create a Product

  1. Add a VTEX node to your workflow
  2. Select Product as the resource
  3. Select Create as the operation
  4. Fill in the required fields:
    • Name: "Premium T-Shirt"
    • Category ID: 1
    • Brand ID: 2
  5. Optionally add additional fields like description, reference ID, etc.

Example: Get Recent Orders

  1. Add a VTEX node to your workflow
  2. Select Order as the resource
  3. Select Get Many as the operation
  4. Configure filters:
    • Add "Creation Date From" filter for recent orders
  5. Process the order data in subsequent nodes

Example: Update Inventory

Coming soon! Inventory operations will be added in the next version.

Resources

Development

Building the Node

npm run build

Watching for Changes

npm run dev

Linting

npm run lint
npm run lintfix

Version History

0.1.0 (Initial Release)

  • Product operations (Create, Get, Get Many, Update, Delete)
  • SKU operations (Create, Get, Get Many, Update)
  • Order operations (Get, Get Many, Start Handling, Cancel)
  • VTEX API authentication

License

MIT

Author

Leonardo Sepúlveda

Contributing

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

Support

If you encounter any issues or have questions:


Made with ❤️ for the n8n and VTEX communities