-
REST API transform Sales into Invoice - "Error ..... Please choose an item to add."
Hi All I'm trying to transform a sales order as per the example in the Oracle documentation. https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_157901123882.html { "externalId": "test-niceo-invoice-postman", "trandate": "2026-07-02", "item": { "items": [ { "item": { "id": "543" }, "amount": 34.00 }, {…
-
REST API v1: "Invalid value for field 'item'" error when creating Assembly Build with lotnumberedass
Issue Summary I'm encountering a persistent HTTP 400 error when attempting to create an Assembly Build via REST API v1 for a lotnumberedassemblyitem. The error message is: "Invalid value for the resource or sub-resource field 'item'. Provide a valid value." However, manual creation of the same Assembly Build through the…
-
Assistance on OAUTH2.0 Client Credentials Authorization Flow
After Following the instructions at https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/chapter_157769826287.html, I have been having issues connecting to NetSuite with my php code. So far as I can tell, everything has been done correctly, however I am still receiving an "invalid request" error.…
-
Post a customerPayment with not-null Payment Method via REST API
I am creating the payment via REST API's customerPayment endpoint. When passing a value for the paymentMethod field of the customerPayment, the payment record is created inside NetSuite, but it still lacks the Payment Method. During testing, I found that I can use "paymentOption" and this field will be pushed via REST API,…
-
SuiteScript or NS APIs to check all features(under Enable Features) enabled or not before deployment
Hellooo! We are having frequent deployment failures in our Netsuite customer accounts as they are knowlingly or unknowlingly altering dependent features that we need for our SuiteApp deployment. I am from automation background and I want to write SuiteScript or NS APIs to check all features enabled or not before…
-
SuiteQL Query Not Returning Requested Data
We made this SuiteQL query at 2026-01-06T21:40:04Z: select id from transaction where to_char(lastModifiedDate, 'yyyy-mm-dd hh:mi:ss')>'2026-01-05 21:37:07' and type='CustInvc' order by id and received zero records. However, an invoice was in fact modified and has a lastModifiedDate of 2026-01-06T21:38:03Z. Why did SuiteQL…
-
How to request Tax Code into expense report by REST Web Service?
1. User would like to create the expense report by API REST WEB Service 2. He prepare the data for request file and including internal id of tax Code 3. He run the script and then the system can create the expense report but field tax code in transaction line is null. Please advise me and give me the sample request file.
-
Can not find field in RestAPI
We have a field we can not find in the API. We have a field on our items that is called "Tax Schedule". This field links to the Tax Schedules set up in NetSuite. When looking at the customization for this form, this field does not appear to be custom. It comes from the Accounting Group and is the Tax Schedule field. We are…
-
Bulk Updating Items via REST API
With the retirement of the SOAP api, how can I change from async bulk updates of updateList upsertList addList deleteList to something I can use in rest. I would be fine updating all 110K items with single API calls, however the concurrency and rate limits do not allow such to happen even over night when system usage is…
-
Suitetalk - Create Customer (POST) issue
Hi, I am trying to create a Customer with the endpoint - POST https://xxxxxx.suitetalk.api.netsuite.com/services/rest/record/v1/customer/ I am trying with this payload: { "entityid": "123452", "companyname": "Intact Test 2", "subsidiary": { "id": "3" }, "contactRoles": { "items": [ { "contact": { "id": "5986", "refName":…