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

Proposal for SFTP-NetSuite Integration

Proposal Summary This proposal summarizes the functionality for NetSuite SFTP integration.  Requirement Aero UK would like to collect orders in XML format from an SFTP and create sales orders in NetSuite. Also push invoices from NetSuite out to a HTTP link.  Our Solution 1. Receive Order from SFTP  • The third-party system places the Order Manifest in the… Continue reading Proposal for SFTP-NetSuite Integration

Shopify NetSuite Integration via Heroku

Shopify NetSuite Integration via Heroku  Functionality Overview  Initial Heroku Setup and app creation  GitHub implementation and deploying in Heroku  Creating webhooks in Shopify  Creating a script to connect to NetSuite (Restlet) and payload conversion  Restlet in NetSuite to fetch payload and do updates  Initial Heroku Setup  Create a Heroku account and purchase a dyno (Eco),… Continue reading Shopify NetSuite Integration via Heroku