Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
SuiteWorld | October 25–28, 2026 | Las Vegas
Registration opens June 9. Be ready when passes drop. Get the green light now - Convince your boss
Registration opens June 9. Be ready when passes drop. Get the green light now - Convince your boss
REST API: Updating existing Sales Order without generating new order lines
When updating an existing sales order, we are sending an object like this using a PATCH request to the URL for the order (like https://[ACCOUNT].suitetalk.api.netsuite.com/services/rest/record/v1/salesorder/15123, where the existing sales order internal ID is 15123)
{"total":654,"entity":{"id":"1542"},"salesRep":{"id":"1008"},"item":{"items":[{"rate":109,"amount":654,"quantity":6,"item":{"id":"387"}},{"rate":0,"amount":0,"quantity":1,"item":{"id":"506"}}]}}
But the result adds two NEW line items to the existing order.
What if we want to modify the quantities of the line items that are already there?
Tagged:
0