Discussions
SuiteWorld is the largest annual gathering of the NetSuite community! It will be held in Las Vegas on October 6-9, 2025. Our customers and partners look forward to SuiteWorld every year as a place to hear the latest from NetSuite, get hands-on learning, and connect with each other. Register now!
Now, you can stay up-to-date with the latest discussions, helpful tips, and important announcements, all delivered straight to your inbox. Whether you’re looking to catch up on what you missed or just want a quick overview, our email digest has you covered. To learn more and to subscribe, click here.
New to NetSuite | REST: PATCH Request Examples
PATCH requests in NetSuite are used to update existing records to append transaction lines and update information for different record types. Here are some examples of how PATCH Requests are implemented.
Updating Customer Information
Scenario: A customer updates their contact information (e.g., phone number, email address) through a self-service portal integrated with NetSuite. Use a PATCH request to update the customer record in NetSuite with the new contact information provided by the customer.
PATCH {{REST_SERVICES}}/record/v1/customer/<customer_id> Content-Type: application/json { "phone": "123-456-7890", "email": "newemail@example.com" }
Adjusting Sales Orders
Scenario: A sales representative needs to adjust an existing sales order such as updating shipping details.
Refer a Member to the Community | Earn the Answer Accepter Badge | Vote for the contents you'd like to see