How to fix a Restlet request error in Postman while testing

Check if the Restlet URL used is correct compared with the Restlet script record ‘External URL link’ field value. Check if the Request type is correct(GET/POST/PUT…) Check if correct values are used for consumer key, consumer secret, access token, and token secret.We can create a new integration in NetSuite through navigation: SetUp > Integration >… Continue reading How to fix a Restlet request error in Postman while testing

Integration: API Testing using Postman

Creating a request via postman for testing APIs – Using API Key Open an new request window in Postman select the request type: GET,POST,PUT,DELETE Provide the API url Select “No Auth” in Authorization” subtab In Headers subtab, add key as “Authorization” and value as “Bearer APIKeyvalue” (replace APIKeyvalue with key provided by client) Click send… Continue reading Integration: API Testing using Postman

Things to check before transferring NetSuite data via ODBC driver

//Info: NTPL- 445 We can preview NetSuite data and transfer it to a third-party database using the ODBC Driver.We need to verify some cases before proceeding with this process. 1. We’re assuming you planned on collecting the posting transactions. Do you intend to retrieve any additional types? (These types of records are typically accessible as… Continue reading Things to check before transferring NetSuite data via ODBC driver

Proposal For API Courier Integration

Proposal summary  The proposal covers the scope of API Courier Integration for  Simplee and SGK warehouses with NetSuite.  Requirement   Integrate Courier for Simplee and SGK warehouse with NetSuite account via API(Stream Public API).  Prerequisites  Access to courier accounts of Simplee and Warehouse  Test Details from NetSuite to send to courier system  Client ID & … Continue reading Proposal For API Courier Integration

Comparing two different codes in Webstorm SDF Project

Local copy with account copy comparisonTo compare the local copy of the code with NetSuite account copy, right-click on the code and click on:NetSuite > Compare with Account file Comparing any random two codes in WebstormTo compare any two codes, first copy any of the two codes into clipboard(select all > copy). Right-click on the… Continue reading Comparing two different codes in Webstorm SDF Project

Data Center-Specific Commerce Domains

All NetSuite accounts and NetSuite-hosted commerce websites will be moved to new data centers over this year(2022).  With this change, they will stop supporting data center-specific domains such as “shopping..netsuite.com” or “checkout..netsuite.com” (In these examples, the asterisk represents the data center identifier). You must replace these data center-specific domains with account-specific domains, such as <accountID>.shop.netsuite.com… Continue reading Data Center-Specific Commerce Domains

How to generate Basic authentication headers for REST API in suitescript?

REST API supports only ‘Basic authentication’ and ‘OAuth 1.0a’ authentication methods.We can generate Basic authentication headers for REST API requests in suitescript using suitescript modules from the username and API token(password).Authentication header need to be passed as header with every request that require authentication. If we use Postman software we can see an authentication header… Continue reading How to generate Basic authentication headers for REST API in suitescript?