Articles
Why manual CSV exports and imports are a bad idea for your ERP
If you are running a high-growth business on NetSuite, Dynamics, SAP B1, or a similar ERP system, you likely started with a very simple way to move data from external systems to your ERP. Whether you are processing orders, syncing payments, or updating product information, the process is often the same. Someone exports a file […]
How to archive NetSuite’s File Cabinet to Google Drive
If you want to archive and back up the files in your NetSuite File Cabinet to Google Drive, you can easily achieve this with a custom-built archiving application. In this article, we will outline the steps that you can take to build your own application written in your preferred programming language. If you’d rather skip […]
How to connect to NetSuite’s SuiteTalk REST API using Python
Connecting to NetSuite’s SuiteTalk REST API can be complicated. The Python code below has been tested and works 100%. It uses token-based authentication (TBA) to connect to the NetSuite REST API. First, install the necessary libraries: pip install requests requests-oauthlib Create a new code file with the code listed below. Type in your account ID, […]
How to connect to NetSuite’s SuiteTalk REST API using node.js
Connecting to NetSuite’s SuiteTalk REST API can be complicated. The node.js Javascript code below has been tested and works 100%. It uses token-based authentication (TBA) to connect to the NetSuite REST API. First, install the necessary node modules: npm install axios oauth-1.0a crypto-js querystring Create a new code file with the code listed below. Type […]
How to set up token-based authentication for NetSuite’s SuiteTalk REST API
There are several ways of setting up authentication to access NetSuite’s SuiteTalk REST API. The most common way is to use token-based authentication (TBA). Here’s what we need to do to set up TBA. You need to log into NetSuite with an Administrator account. You need to enable the REST API feature: Go to Setup […]