Skip to main content

Update VNTANA product attributes from scheduled Excel (.xlsx) attachments

Workflow preview

Workflow preview
100%
Update VNTANA product attributes from scheduled Excel (.xlsx) attachments preview
Open on n8n.io

1. Workflow Overview

Quick overview This workflow runs every 15 minutes, checks a VNTANA product for a new XLSX attachment with a defined filename prefix, reads attribute key and attribute value rows from the spreadshe...

Best for

  • Document Extraction automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.stickynote, n8n-nodes-base.code, n8n-nodes-base.scheduletrigger, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.spreadsheetfile

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Ben Conway.

Original n8n.io source

1.1 Workflow description

Title
Update VNTANA product attributes from scheduled Excel (.xlsx) attachments
Workflow name
Update VNTANA product attributes from scheduled Excel (.xlsx) attachments

Quick overview

This workflow runs every 15 minutes, checks a VNTANA product for a new XLSX attachment with a defined filename prefix, reads attribute_key and attribute_value rows from the spreadsheet, and replaces the product’s attributes in VNTANA with the values from that file.

How it works

  1. Runs on a schedule every 15 minutes.
  2. Logs in to VNTANA with your account credentials to get an auth token.
  3. Searches the target VNTANA product’s attachments and selects the newest XLSX file whose name starts with the configured prefix.
  4. Skips processing if the latest matching attachment UUID was already handled in a previous run.
  5. Downloads the XLSX file from VNTANA storage and converts it into JSON rows.
  6. Builds a VNTANA attributes payload from the attribute_key and attribute_value columns and updates the product via the VNTANA Products API, replacing all existing attributes.

Setup

  1. Create n8n Variables named VNTANA_EMAIL and VNTANA_PASSWORD with your VNTANA login details.
  2. Update the Config values for productUuid, clientUuid (workspace UUID), and productName for the product you want to update.
  3. Set filePrefix to match the attachment naming convention (for example, attributes_completed_) and ensure the spreadsheet includes attribute_key and attribute_value column headers.

Requirements

  • VNTANA account with platform API access
  • n8n Variables: VNTANA_EMAIL and VNTANA_PASSWORD
  • A VNTANA product UUID and workspace (client) UUID
  • A spreadsheet (.xlsx) with columns attribute_key and attribute_value, attached to the product in VNTANA

Customization

  • Change the schedule interval (default: 15 minutes) on the Schedule Trigger node
  • Update filePrefix in the Config node to match your naming convention (default: attributes_completed_)
  • Values in attribute_value can be plain strings or JSON strings — useful for structured data like multilingual hotspot annotations

Additional info

Attribute values that are JSON objects should be serialized as strings in the spreadsheet (the VNTANA API stores all attributes as string key-value pairs).

The workflow uses n8n static data to track the last processed attachment UUID, so re-uploads of the same file will not trigger a re-run unless the attachment is deleted and re-added.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 2 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 3 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 4 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 5 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 6 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 7 - Configure Values

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - When Every 15 Minutes

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.2

Block 9 - Merge Config and Trigger

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - Post Auth to VNTANA

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 11 - Post Search Attachments

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 12 - Check Newest Attachment

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 13 - If New File Exists

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2

Block 14 - Fetch Attachment File

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

Block 15 - Parse Spreadsheet Data

Type / Role
n8n-nodes-base.spreadsheetFile - spreadsheetFile
Config choices
Version 2

Block 16 - Build Attribute Array

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 17 - Update Product Attributes

Type / Role
n8n-nodes-base.httpRequest - httpRequest
Config choices
Version 4.2

3. Summary Table

Workflow Update VNTANA product attributes from scheduled Excel (.xlsx) attachments
Complexity advanced
Nodes 17
Categories Document Extraction
Author Ben Conway
Published 04 Jun 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/16129/16129.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Update VNTANA product attributes from scheduled Excel (.xlsx) attachments do?

Quick overview This workflow runs every 15 minutes, checks a VNTANA product for a new XLSX attachment with a defined filename prefix, reads attribute key and attribute value rows from the spreadshe...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction use case.