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
Tag: integration
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)
Netsuite – Repairdesk Integration – Proposal
Requirement: Need to implement integration between NetSuite and Repair desk to automatically create purchase order in Repair desk for the sales order in NetSuite. Solution: We will develop 3 Restlet scripts to provide the Repair Desk team with the custom API endpoints for customer authentication, PO creation and inventory creation in Repair Desk. Customer Authentication: … Continue reading Netsuite – Repairdesk Integration – Proposal
Proposal For NetSuite Integration With BlueScope
PROPOSAL SUMMARY This proposal outlines the scope of Invoice integration between NetSuite and BlueScope, and the limitations and drawbacks of this integration.  REQUIREMENT  Studco team needs to integrate BlueScope with NetSuite for creating automated invoices(vendor bills) based on the data provided by the BlueScope team using an endpoint that we will be providing. DELIVERBALES We… Continue reading Proposal For NetSuite Integration With BlueScope
406-Not Acceptable Response in HTTP
HTTP Error 406 is usually returned when the requested file exists but cannot be used as the client system doesn’t understand the format of the return response. Your backend service is saying that the response type it is returning is not provided in the Accept HTTP header in your Client request. Add the accept header to resolve… Continue reading 406-Not Acceptable Response in HTTP