Hi everyone , I am using this library to connect t...
# suiteql
z
Hi everyone , I am using this library to connect to NetSuite via Python https://pypi.org/project/netsuite/ However when I run a suiteql query it gives me by default 10 records and if I try to increase the limit , it says max is 1000 . My question is is this a limitation from Netsuite API itself or is it something that can be tweaked here to get all records at one go ? this is the code base of the library https://github.com/jacobsvante/netsuite/blob/main/netsuite/rest_api.py
t
I know that is a NetSuite limit on SuiteQL Rest requests. The results are paginated at a 1000 per. I know you can add an offset as a query parameter to the request to get later pages. However I’m unfamiliar with that package and wouldn’t know how to do it in Python.
z
Thanks Tyson