Articles
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, […]
Read MoreHow 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 […]
Read MoreHow 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 […]
Read MoreHow to integrate Jira and Google Drive to archive Jira issue attachments
Jira and file attachments Jira allows you to upload file attachments and link them to an issue. In addition, you can also copy and paste file attachments into the description field and into comments. These become attachments in the issue but you also get a preview of the attachment inside the description or comment. This […]
Read MoreHow to create a Google service account for integrations
A service account is a special kind of Google account used by an app, rather than a person, to authenticate and access Google APIs. If you want to build a server-side integration with no UI and where there is no user auth process, you can use a service account. To create a service account, follow […]
Read MoreHow to create API keys for Jira
To connect to the Jira API, you need to use an API token. Follow this process to create these tokens. Log into your Jira account by going to you homepage which will be something like this: https://XXXXXX.atlassian.net/ . Go to https://id.atlassian.com/manage-profile/security/api-tokens . Click ‘Create API token’. A dialog will appear. Type in a label for […]
Read MoreHow to enable the Google Drive API
Follow these instructions to enable the Google Drive API so that you can access Google Drive resources from your code. Go to: https://console.cloud.google.com/ Choose your project. If the APIs & services page isn’t already open, open the console left side menu and select APIs & services. Select Enabled APIs and services Click ‘+ Enable APIs […]
Read MoreHow to build a custom integration between PayPal and NetSuite
Why Connect PayPal to NetSuite? If you are operating in the e-commerce space, having all your systems integrated and speaking to one another is crucial for your overall productivity, operational efficiency, and improved customer experience. If you are a business that uses NetSuite; that is involved in e-commerce, digital goods, or subscription services; and you […]
Read MoreMain types of business software used by successful businesses
In today’s rapidly digitizing world, successful businesses of all sizes are increasingly dependent on a variety of types of business software to streamline operations, increase productivity, and achieve their objectives. These internal software tools play a crucial role in various business areas, from project management and collaboration to customer relationship management and data analysis. This […]
Read MoreHow to integrate NetSuite with external systems
SuiteTalk, NetSuite’s web services integration platform, comprises two key components: the older SuiteTalk SOAP Web Services Platform and the newer SuiteTalk REST Web Services API. These components provide developers with the necessary tools to integrate NetSuite seamlessly with external systems and applications, enabling businesses to streamline processes, automate workflows, and enhance collaboration. SuiteTalk SOAP Web […]
Read More