Custom module for API Configuration of NetSuite-TrackTraceRX Integration.
Tag: integration
Update Item Base Price NetSuite to Big Commerce
Below code defines if the base price is updated for an item in NetSuite, the same will get updated in Big Commerce. Script: User event Below functions defines to sent get requests to big commerce
Get Customers from Big Commerce through API
Below Code is defined to get the customers from Big Commerce and create them in NetSuite if not exists Script: Map-Reduce
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
Handling Form data in integration of NetSuite and a third party.
The function below can be used handle form-data. Headers format for the APIconfiguration.
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
Sending, Deleting SO data: Third party Integration
When a SO is created the Sales order data is pushed to a third party called NUMERIK using API. And wen the same SO is deleted, the same will be deleted from NUMERIK
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)
Add lead details to Klaviyo
Solution We can integrate with Klaviyo and post the netsuite data using their API A sample UE is added below
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)