Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
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.
Expand your NetSuite knowledge by joining this month's Ask A Guru Live: PROCURE TO PAY. RSVP on this event now!
Refer a Member to the Community | Earn the Answer Accepter Badge | Vote for the contents you'd like to see
