Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
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