Netsuite Integration with Google Drive

Solution Google Drives can be integrated into NetSuite using their API. Overview Configure your Google Cloud project and app: During development, you register your app in the Google Cloud console, defining authorization scopes and access credentials to authenticate your app with an API key, end user credential, or service account credential. Authenticate your app for… Continue reading Netsuite Integration with Google Drive

Proposal for BigCommerce- NetSuite integration via REST API

PROPOSAL SUMMARY  This proposal covers the scope of BigCommerce – NetSuite Integration via REST API.  REQUIREMENT  A solution to sync the Items, customers, Orders, Shipments, Refund between Big Commerce and NetSuite.  PREREQUSITES  Need to create Account API prior to integration in Big Commerce. Only store owner account in Big Commerce can set up Account API. So, the… Continue reading Proposal for BigCommerce- NetSuite integration via REST API

Add members to Klaviyo list (Lost Lead sync)

Script: Userevent When creating the lost lead or lead record on after submit trigger will fetch the required details and post it to Klaviyo by API POST request. /** * @NApiVersion 2.1 * @NScriptType UserEventScript */ /************************************************************************************************ * * NetSuite – Klaviyo Integration Lost leads** * * User event script for reak time API integration… Continue reading Add members to Klaviyo list (Lost Lead sync)

Converting credentials to base 64 formats for the API call (Access token retrieval)

The function converts the string combining the username and password to base 64 format and apply in the API call for generating the access token. Sample API request code snippet let accessTokenresponse = https.post({ url: AUTH_URL, headers: { ‘Content-Type’: ‘application/x-www-form-urlencoded’, ‘Authorization’: ‘Basic ‘ + getBasicAuthorisation(credentialFetch), }, body: { ‘grant_type’: ‘client_credentials’, } }); /** * @description… Continue reading Converting credentials to base 64 formats for the API call (Access token retrieval)