Use the following request to generate a new access token for the Google Drive API: Request type: POST URI: ‘https://accounts.google.com/o/oauth2/token’ In the body section, choose ‘x-www-form-urlencoded’ “Request Body”: { client_id: {Your client ID here}, client_secret: {Your client secret value here}, refersh_token: {refersh token}, grant_type: refresh_token, }
Category: NS Integration
All articles / code related to Netsuite integration
Google Drive API request to generate refresh token
Refresh tokens can be used to generate access tokens for API requests. Use the following steps: Step1: Generate access code You can create an access code through the Google OAuth 2.0 Playgrounds website. If you are doing this through browser URL with redirect link as ‘localhost’, you will get: http://localhost/?state=state_parameter_passthrough_value&code={actual_code_here}&scope=https://www.googleapis.com/auth/drive.file Step2: Send API request via… Continue reading Google Drive API request to generate refresh token
Google Drive API request to create a new folder
Use the following request to create a new foder on the Google Drive: Request type: POST URI: ‘https://www.googleapis.com/drive/v3/files’ Headers: “Authorization”: `Bearer ${accessToken}` Use the access token generated using the access credentials “Content-Type”: “application/json” “Request Body”: “{ “name”: “folderName”, “mimeType”: “application/vnd.google-apps.folder”, “parents”: [“{parentFolderID}”], }” To get the folder ID of any folder in Google Drive easily, open… Continue reading Google Drive API request to create a new folder
How to generate Google Drive API credentials
You need an active Google account with Google Drive service as a prerequisite for generating Google Drive API credentials. First, register your Google account on the Google Cloud Platform. Navigate to ‘Google Cloud Paltform’ You might need to provide your Credit card details to complete the registration. Now, create a new Project from the menu.… Continue reading How to generate Google Drive API credentials
Print Node Integration with NetSuite
In the modern business landscape, efficiency is paramount, and streamlined operations can significantly impact productivity. One area where businesses often seek optimization is in printing processes. NetSuite users, in particular, can enhance their printing operations by seamlessly integrating with PrintNode, a powerful printing service. This integration allows businesses to leverage locally deployed printers for various… Continue reading Print Node Integration with NetSuite
Registering Client for ZOHO integration in ZOHO Developer console
Before get started with authorization and make any calls using the Zoho CRM APIs, we need to register application with Zoho CRM. To register, Go to Zoho Developer Console. Choose a client type: Java Script: Applications that run exclusively on a browser and are independent of a web server. Web Based: Applications that are clients running on a dedicated… Continue reading Registering Client for ZOHO integration in ZOHO Developer console
Access Token and Refresh token generation using ZOHO CRM
To generate, first we need to make register the client and obtain client Id and client secret. Once it generated, we need to make an authorization request of the form. “https://accounts.zoho.in/oauth/v2/auth?response_type=code&client_id=1000.YER1ZKFUZAJ9S53P8ZIZ09MSZMPFMG&scope=ZohoCRM.modules.ALL&redirect_uri=https://td2896732.app.netsuite.com/app/common/scripting/scriptrecord.nl?id=2358&access_type=offline” type this in a web browser and zoho access page will open, accept this. Then it will redirect to the implementation page of our… Continue reading Access Token and Refresh token generation using ZOHO CRM
HRIMS Integration API Structure Documentation
Employee Sync The HRIMS will provide GET API End point for fetching the Employee data from HRIMS. We will call from the NetSuite to HRIMS We will send the request on scheduled basis(Daily). We will use the HRIMS Employee ID for detecting the duplication of employees. The HRIMS must have the same class, subsidiary,department, location… Continue reading HRIMS Integration API Structure Documentation
Comparison between Celigo and Custom scripting for NetSuite-Shopify Integration
I have provided a comparison for both custom scripting and Celigo implementation, reflecting our experience and expertise in both approaches. Our team is ready to support you in whichever option you choose, ensuring that your integration solution aligns with your business objectives and requirements. Ultimately, the decision between Celigo and custom scripting depends on… Continue reading Comparison between Celigo and Custom scripting for NetSuite-Shopify Integration
Saved search with SOAP Web Services
Problem Statement: It is possible to create a saved search with SOAP Web Services. Solution We can run an existing saved search with additional filters by simply adding a few more lines in the SOAP HTTP Request. Find the sample request and response below where the search operation’s TransactionSearchAdvanced to load an existing transaction saved… Continue reading Saved search with SOAP Web Services