Questions tagged [netsuite]

NetSuite is a vendor of business management SaaS. The platform's scope includes ERP, CRM, PSA, and Ecommerce. Primarily tailored to mid-market companies.

Netsuite is a software platform founded in 1998 that provides a number of business related services targeting mid-market companies, as well as divisions of larger enterprises. As a platform it is highly customizable through a Javascript-based API called SuiteScript.

4709 questions
37
votes
5 answers

Set Authorization/Content-Type headers when call HTTPClient.PostAsync

Where can I set headers to REST service call when using simple HTTPClient? I do : HttpClient client = new HttpClient(); var values = new Dictionary { {"id", "111"}, {"amount", "22"} }; var content = new…
vico
  • 17,051
  • 45
  • 159
  • 315
27
votes
6 answers

Netsuite woes: Is there decent reference anywhere?

I'm hoping this question isn't too obscure cross fingers I'm looking for a decent reference for netsuite scripting and api (both of which are based on ASP) does anybody know where to find this stuff? The netsuite help pages are mediocre at best, and…
Jiaaro
  • 74,485
  • 42
  • 169
  • 190
16
votes
3 answers

On what version of javascript does NetSuite currently run SuiteScripts?

On what version of javascript does netsuite currently run SuiteScripts? This is my understanding: SuiteScript is a NetSuite scripting API that runs on a javascript engine. Javascript has multiple versions (E.G. ES6 and ES7). Which version does this…
10
votes
2 answers

Calling Netsuite SOAP .wsdl from C# .Net Core

First of all, I found this link which was a HUGE help to get this working. https://medium.com/@benwmills/using-the-netsuite-suitetalk-api-with-net-core-net-standard-40f1a4464da1 But wanted to post my findings - in case it helps anyone else. Step 1:…
Jay Peterson
  • 159
  • 6
10
votes
3 answers

How to set value for the multi-select field using netsuite suitescript 2.0 version?

I want to set the value for the multi-select with existing values in that field. (i.e) If the Filed has the values "A , B" means I wants add the New Value "c" with Existing Values So, Result would be "A,B,C" . I used "N/Record' Modules…
Deepan Murugan
  • 721
  • 2
  • 19
  • 41
10
votes
3 answers

MODULE_DOES_NOT_EXIST SuiteScript

I am running into the issue below when trying to edit a CUSTOMER record in NetSuite. The script I have created is very simple. What could I possibly doing wrong with such a simplistic piece of…
Coova
  • 1,818
  • 5
  • 36
  • 63
10
votes
2 answers

Does Netsuite have a RESTful API?

I want to do an iOS app that is integrated with Netsuite, it should have to be done through a RESTful API but I couldn't find anything clear enough on their site, internet or even by talking to their representatives. Does anyone know if there is any…
pabloruiz55
  • 1,306
  • 1
  • 14
  • 27
9
votes
2 answers

Netsuite: How to attach custom fields to sales orders

The documentation for Netsuite is quite lacking, they cover the basics and then let you loose to explore. Anyone without a vast knowledge of PHP trying to use their php toolkit would be on their knees begging for mercy. At any point throughout this…
Dreamcube
  • 165
  • 1
  • 10
9
votes
1 answer

Reach a NetSuite RESTlet via OAuth

The goal is to be able to call RESTlets using OAuth-header instead of NLAuth-header from my Java-application. In order to achieve it I took the following steps: I created NetSuite Developer Community Account and got a testing environment with admin…
Logrus
  • 163
  • 2
  • 9
9
votes
2 answers

How to get Custom Item Field in netsuite php toolkit 2012.2?

Here is my code: $service = new NetSuiteService(); $getRequest = new GetRequest(); $getRequest->baseRef = new RecordRef(); $getRequest->baseRef->internalId = "custitem3"; $getRequest->baseRef->type = "itemCustomField"; $result =…
Lan Nguyen
  • 445
  • 2
  • 6
  • 13
8
votes
4 answers

Netsuite: How to link Purchase Order to Sales Order

I’m trying to automate linking the NetSuite purchase order to a NetSuite sale order and the following is the code I tried to accomplish this task. But I'm getting error (see at the bottom). Can you please check and let me know what I’m missing…
Hemant
  • 615
  • 1
  • 8
  • 21
8
votes
4 answers

NetSuite SuiteTalk REST Web Services - Invalid Login Attempt

I am trying to use the NetSuite SuiteTalk REST Web Services to access NetSuite CRM data. I have the access up and working in production. Able to retrieve record data and metadata. I am now trying to set up access in the sandbox for more in-depth…
Bryan Hunt
  • 145
  • 2
  • 5
8
votes
7 answers

Ambiguous Authentication in Netsuite Token Based API call

I am trying to make SOAP calls to the Netsuite API using Token Based Authentication. I have a C# client that is generated from WDSL and it is sending the following request (with the secrets replaced).
ChrisBellew
  • 1,144
  • 2
  • 12
  • 27
8
votes
5 answers

Suitescript 2.0 addButton

I have a suitelet with a sublist button and I am trying to get the button to execute a function on a custom module. I can not get it to work. I get an error "Cannot call method "receive" of undefined" Any Ideas? Snippet of code to add…
kdub
  • 205
  • 1
  • 6
  • 14
8
votes
7 answers

Invalid Login attempt while accessing Netsuite using RESTlet?

I am trying to get data from Netsuite using RESTlet. For that, i am using the following details in PHP: Consumer Key Consumer Secret Script Id Deploy Id Access Token Id Access Token Secret At first time of using these details, i got that error is…
Prabhu
  • 783
  • 2
  • 10
  • 35
1
2 3
99 100