Netsuite Operation Restriction

I read from the documentation for netsuite api that there is a restriction on operations. The Add operation has a limit of 400 operations, even during peak hours. I have googled, but I could not find a way to increase the operation limit. Is it possible to increase the number of operations. Any solution, or link, etc. Would be helpful.

+5
source share
3 answers

If you read the Understanding Web Services Governance help topic, there is a limit on the number of records in the request and NOT on the number of add operations themselves

As clearly stated

The record limits indicated in the following tables are equal to the query basis. There is NO limit to the number of requests that can be sent over a certain period of time, only by the number of records sent to an individual request.

You can always run another query with the following set of 400 queries. If you are concerned that requests take time and you really want to open parallel / parallel requests, there are two options:

(1) you buy a SuiteCloud Plus license, which will increase the number of concurrent requests, allowing multiple simultaneous users 10-30 (depending on the number of SuiteCloud licenses that you can buy)

(2) Use RESTlet APIs, which allow about 10 concurrent requests per user session, but writing a SuiteScript package to a NetSuite account requires access to it through Https as web services.

If it bothers you -

is there a way to increase the limit on the number of records per operation / request

No answer

+5
source

The only thing you can consider is to buy a SuiteCloud Plus license so you can send your request at the same time. I still remember that 1 license will have 10 queues in which you can send 10 simultaneous requests, and this will increase your limit.

0
source

SuiteTalk Web Services has an AddList operation that can contain an array of 50 records to insert. If the user has a "user of concurrent web services", then these are 10 simultaneous AddList operations.

0
source

Source: https://habr.com/ru/post/1236940/


All Articles