Is any way to retrieve data from a NetSuite .iqy URL directly inside KNIME, and have it refresh automatically without relying on Excel.
Hi,
this sound like a query you can pass directly into you favorite LLM like chatGPT or Gemini. This is the result
Yes — you can retrieve data from a NetSuite .iqy URL directly in KNIME without needing Excel, and you can set it up so the data refreshes automatically. The .iqy file from NetSuite is basically just a web query URL with parameters & cookies/tokens — Excel uses it to fetch data, but KNIME can do the same as long as you handle authentication and HTTP properly.
What’s inside a NetSuite .iqy file?
A typical NetSuite .iqy contains something like:
WEB
1
https://system.netsuite.com/app/reporting/...
So it is just an HTTP GET request. KNIME can fetch such URLs via its HTTP nodes — but you need to handle:
Authentication (often Token-Based Auth for NetSuite)
Session or OAuth signatures
Possibly cookies, headers, and query parameters
Option 1 — Use KNIME’s GET Request / POST Request Nodes
…
Thanks ActionAndi,
I already searched in Gemini AI, but could you please show me a visual example to demonstrate the steps?
Thank you in advance.