Questions tagged [netsuite-rest-api]

30 questions
0
votes
0 answers

Applying SuiteScript on a NetSuite page got error "MODULE_DOES_NOT_EXIST"

After applying Suitescript I am trying to deploy my user event script on vendor form but I always got "MODULE_DOES_NOT_EXIST" error. ERROR STATEMENT: {"type":"error.SuiteScriptModuleLoaderError","name":"MODULE_DOES_NOT_EXIST","message":"Module does…
0
votes
1 answer

Netsuite external Id error depending on externalid value

I'm simply trying to upsert a contact in Netsuite using REST api, via Postman. This contact is not present in NS, none of the tested external ids is. I send this request PUT {{REST_SERVICES}}/record/v1/contact/eid:a0A580000010LVvEAM with body { …
0
votes
1 answer

Connecting to NetSuite via Azure Data Factory REST API Connector

Hello Stack Overflow community, I am trying to establish a connection between NetSuite and Azure Data Factory using the REST API connector. I have successfully created a linked service for NetSuite in Azure Data Factory, as shown in the screenshot…
Oliver
  • 443
  • 4
  • 10
0
votes
1 answer

NetSuite OAuth 1.0 - Python - Extraction

I am trying to geta record from Netsuite and it works well with the Postman, but throwing invalid login Error with Python. My code as follow import requests url = "https://XXXXX.suitetalk.api.netsuite.com/services/rest/record/v1/invoice" payload =…
sdh2000
  • 43
  • 1
  • 5
0
votes
0 answers

Netsuite Suitetalk API to fetch records from Netsuite using Python

I am trying to fetch the records from Netsuite using the Suitetalk API. While running on postman everything is running perfectly fine but when I am trying through my python script after changing the postman collection to a python code, I am getting…
0
votes
1 answer

How do create Vendor Bill in NetSuite using REST API?

How do create Vendor Bill in NetSuite by REST API call? Also, supply tax which I want as per my requirement. Currently, I am facing the issue that NetSuite Auto applies tax based on Vendor's country and state. But I want to override that tax…
0
votes
0 answers

Integrate Canada Post shipping into Suitecommerce Instore

I want to integrate Canada Post API into suitecommerce instore. I have seen a Netsuite bundle already exists. But client wants to create custom script for this integration. I have some knowledge in suitescript APIs. But I am very new to this instore…
Ba.Lal
  • 180
  • 2
  • 16
0
votes
0 answers

How to resolve the error "SSS_CONNECTION_TIME_OUT" upon connecting to API with certificate on NetSuite?

On NetSuite, I am trying to connect to a third-party API. Their API always expects both the certificate and key part to be provided (an SSL Base64 PEM certificate that also requires a key). I did a connection test on Postman and the test was…
0
votes
0 answers

NetSuite - How can I get the users and roles via SuiteTalk API?

I am trying to find a way to use NetSuite API and pull information about the users and what role each user has. It seems very complicated to perform such action via NetSuite REST API. I have the client id, secret and token id and secret, it seems…
0
votes
1 answer

Using Contains in NetSuite saved search to search for one or more keywords

What do you use as a seperator when using contain in saved search criteria in NetSuite? For example: Formula (Text) contains apple**SEPERATOR?**banana. So I want the seperator here to act as OR. I tried OR, %, "", * . I am not sure if I tried the…
Vigo
  • 1
0
votes
0 answers

How to debug which script is throwing Cannot read property \"length\" from null (NLRecordScripting.scriptInit$lib#799)

I am getting this error while updating employee in record netsuite. I am not sure what is causing this error. How can I find out which script or what is causing this? I have check in script logs (Customization > Scripting > Script execution logs)…
M Tauqeer
  • 348
  • 2
  • 13
0
votes
0 answers

Netsuite Rest API POST message attachments

We are using Netsuite as our CRM application. We already build an interface at our website to add messages to existing supportcases. Im using the REST API and the suiteQL API to POST data to netsuite. However we now want to expand this to add…
Webdeveloper_Jelle
  • 2,868
  • 4
  • 29
  • 55
-1
votes
1 answer

Data seeding / fixtures for NetSuite automated testing

We have Selenium tests covering scenarios for our NetSuite (rel. 2023.1) customizations, but struggling with repetitiveness of the tests, since some operations cannot be "undone" (as per accounting/business logic). This IMHO clearly calls for data…
-1
votes
1 answer

is there a suitelet script to upload the files by drag and drop to the file cabinet in Netsuite

suitelet script should be able to upload the files using drag and drop /** * @NApiVersion 2.x * @NScriptType Suitelet * @NModuleScope SameAccount */ define(['N/ui/serverWidget', 'N/file'], function(serverWidget, file) { function…
-1
votes
1 answer

NetSuite - Collecting information based on a given Saved Search ID

I am trying to test in Postman via NetSuite SOAP a way to enter a savedSearch ID and in return receive information from that saved search. I tried sending a POST request…
1
2